Reputation: 754
Can anyone recommend an efficient way of restoring asp.net sites, currently the steps I take are:
1) Unzip site backup
2) Edit web.config connection string to reflect my local SQLEXPRESS database
3) Restore Database in SQL studio 2008
4) Delete primary user in the database
5) Add the removed user in the Security tab and set him as the db owner
If anyone has any thoughts on reducing these steps or a different system any advice would be much appreciated.
Upvotes: 0
Views: 152
Reputation: 24535
make a backup of the existing site if you are restoring over a current version (in case changes have been made)
Create any folders required and assign permissions
Create the User/Application pools if this is a new machine
Otherwise seems reasonable to me?
Upvotes: 1