Question:
What is the easiest way to copy an sql 2000 server database from one webserver to another?
dbbrotman
2006-04-23 21:30:48 UTC
I have a database set up on a remote sql 2000 server and I want to duplicate the same database on another remote server for testing purposes. Is there a way to do this without manually creating the database again?
Four answers:
r_ranjith
2006-04-24 06:46:37 UTC
There are two Good ways to do it:



1. Using Import & Export wizard, you can transfer the entire database from one server to another.



2. Simply FTP the data file (.MDF) and then attach the file using the sp_attach_db command.
2006-04-23 21:34:37 UTC
There should be a way to save the database as a sequence of SQL queries, and then run them on the other webserver. I have not dealt with sql 2000 per se
programmer
2006-04-23 23:14:39 UTC
You can use SQL Server's Utility to Export Data to another SQL Server or an alternative is that you can take backup of your database from one server and restore it at another one!
David J
2006-04-23 21:35:08 UTC
use the replicaton service or unmount the database, do a copy (ftp if needed) and a remount.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...