Link to home
Start Free TrialLog in
Avatar of simpkinst
simpkinstFlag for United States of America

asked on

Is there a way to replicate from SQL Server 2008 r2 back to SQL Server 2005

Does anyone know how replicate SQL Server R2 to SQL Server 2005 , or If this is even possible? If this can be done can you please explain the process. I know you can go the other way, I need to test some databases and would like to be able to go back and forth for testing purposes. Thank you for any help that I receive.
ASKER CERTIFIED SOLUTION
Avatar of Anuj
Anuj
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of simpkinst

ASKER

ok, sorry for this but scope has been redefined. I need to replicate certain tables from SQL Server 2008 R2 to the receiver on SQL Server 2005. Can that be done? I only need to go in one direction. Again, thanks for any help in this matter. I guess to break it down I have tables A,B,C on SQL Server 2008 R2 and need to move table B to SQL Server 2005.
Avatar of lcohan
"I need to test some databases and would like to be able to go back and forth for testing purposes."

Here's one scenario I use before each of our SQL upgrades:
 
You could have your original (initial) 2005 database backup and keep it safe then restored to a SQL 2008 server where you back it up again as 2008  and keep safe then do parrallel testing on both SQL 2005/2008 where now you could go back aand to restore the initial backup on each server from where you started from.
"I guess to break it down I have tables A,B,C on SQL Server 2008 R2 and need to move table B to SQL Server 2005."

This can be also done much easier in my opinion by using linked server on SQL 2008 to 2005 then use four name qualifier statements to do whatever you need against SQL 2005 linked server from the SQL 2008:

http://msdn.microsoft.com/en-us/library/ms188279(v=sql.105).aspx
I guess I should rephrase it Tables A,B,C are under Datbases 1,2,3. In other words Database 1 has tables A,B,C and Database 2 has tables A,B,C with different data and Database 3 has tables A,B,C. We need to replicate the data to SQL 2005 server with updating data, under Datbase 4 with a different name, and use a table from either database 1,2, or 3 without having to recopy the table over and and over again.