I was reading through this post here http://www.misfitgeek.com/op-ed/adding-asp-net-membership-to-your-own-database
and thought to my self what the common practice is. What do developers using ASP.NET membership and authorization in their applications recommend as a best practice? creating the membership tables in the same database that stores their applications data or configuring a second database to store ONLY the membership information?.
My current setup is a different database for membership information ONLY but am thinking that increases the number of databases i have to maintain. If I have 5 applications using asp.net membership, then that means 5 more asp.net membership databases.
So do you normally create the asp.net membership tables in your main database or you configure a separate membership table? what do you recommend.