Reputation: 2687
If I've already run the aspnet_regsql.exe
tool on a database that will be used with ASP.NET Membership, can I dump that database on a remote server without the server needing to run the tool again?
Upvotes: 1
Views: 143
Reputation: 9002
Yes, the aspnet_regsql.exe
tool creates the necessary schema on your database, there is no other magic performed on the machine.
Everything should work fine after moving your database to another server, you will not have to re-run this tool.
Upvotes: 1