Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
MIK_2008
Master Smack Fu Yak Hacker
1054 Posts |
Posted - 2011-02-09 : 00:13:26
|
hi there,I need to extract the data of our live server (SQL 2008) to a local server (SQL 2000) whereas both are on different network, though i can access the live server from local network's machine. as far as i know one cannot restore a backup of newer version of SS to an old one .. e.g. from 2008 to 2000. is it so?Please suggest how can I extract and dump the data from live to local server? if possible please explain with an example? Many thanks! MIK |
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2011-02-09 : 01:31:31
|
You can use the Export/Import Data Wizard. You can write an SSIS package. You can BCP the data out, and Bulk Insert it in. |
 |
|
MIK_2008
Master Smack Fu Yak Hacker
1054 Posts |
Posted - 2011-02-09 : 01:36:19
|
are these options are at database level or table level? Just thinking it would not be good if shall i be doing it for each and every table? |
 |
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2011-02-09 : 01:44:10
|
You're going to have to do it for every table (and every other object you want to migrate as well)If you use the export/import wizard, you can simply tick every box.Be aware, that none of these options will copy the indexes, stored procedures, UDFs, users etc.You can also setup snapshot replication with the 2000 box as the subscriber.I would probably just script out all of the objects, apply the scripts at the 2000 box and use BCP to move the data. |
 |
|
MIK_2008
Master Smack Fu Yak Hacker
1054 Posts |
Posted - 2011-02-09 : 01:48:35
|
Thank you |
 |
|
|
|
|