I need to move/copy all of my databases (only 5) from one server to another. I know how to make backup and restore but I also need to move all information of my databases including users, schema, etc…
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In general there are two possibilities to copy database:
1 BACKUP-RESTORE
In this case you will have some probles main of which is
After you move databases to a new server, users may not be able to log in to the new server.A solution of this problem is provided here:How to transfer logins and passwords between instances of SQL Server
2 DETACH-COPY-ATTACH it’s just copying (or moving) of database files to another server.
About pros and cons of each approach you can read here SQL Server backup/restore v.s. detach/attach