Reputation: 5738
I'm new to membership and providers. I just have seen a video and its basic understanding.
I am using Visual Studio 2008. I was able to attach DB in project.
Why it is not being shown in Microsoft SQL Server Management Studio?
How I will transfer this DB into commercial environment? Should I have another DB for this?
I'm using Asp.Net configuration application/tool. In video(using Visual Studio 2010) it was being shown that it added a connection string in web.config and a new DB was added into SQL Server.
I need some guidance.
Upvotes: 1
Views: 605
Reputation: 4081
Regarding the question - " how I will transfer this db into commercial environment ? Should I have another db for this ? "
You can achieve this by creating a script of you DB, which will contain the DB schema( and it can also the present data in the DB in the script, optinally if you want). Then run this script on your production server to create the DB over there.
Have look at this link for Creating the Membership Schema in SQL Server
Upvotes: 1
Reputation: 6780
1) to access it through SSMS, you'll probably have to attach the database file to the server explorer. 2) depending upon your host, you could upload the same db-file , and then just change the connection string accordingly and then use it. OR you could generate a back-up script of your database and use it to populate your new database(provided by your host). 3) for this, I'll have to see the video myself to exactly figure out what's happening. Most probably, the connection string provided was of the SQL server itself, rather than the new db file attached to your project.
Upvotes: 1