I have a Database of 50Gb of data on Test Server A, I want to take the Backup and I want to Restore it to Test Server B. I need Backup and Restore step by step with query's?
Asked
Active
Viewed 2,840 times
2 Answers
1
If you are unsure, start with these MSDN how-tos
- How to: Back Up a Database (SQL Server Management Studio)
- How to: Restore a Database Backup (SQL Server Management Studio)
You'll need to copy the backup file from serverA to serverB of course.
SSMS will allow you to script these actions too so you can see teh underlying SQL commands

gbn
- 6,079
- 1
- 18
- 21
0
use mysqldump if you are using MySql db http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html
for export
mysqldump --opt --user=root --password test dbname > dbbackupscript.sql
for import
mysqldump --opt --user=root --password test dbname < dbbackupscript.sql
-
Question was tagged sql-server – Jun 30 '11 at 08:39
-
Tell me as A SQL DBA how to do? – Jun 30 '11 at 08:50
-
am a BEGINNER of SQL SERVER DBA. So I need a step by step procedure to take backup and restore process on Test Server. – Jun 30 '11 at 08:56