May 13, 2009 at 6:20 am
Hi all (SQL 2005)
I'm still learning the ropes here and have a question for you.
I have been asked a refresh a database, data only, from one machine (live) to another (test). Now, normally I would use REDGATE SQL Compare to do this, but it's not working.
So, what is the best way to do this?
Should I truncate all the tables in the target test database and import the data?
Is there a way to create a copy of the target db 'without' data as that would preserve the stored procedures etc and I could restore into that. In fact if I can do that REDGATE would still be an option.
Anyone pointers ?
Many thanks
Farren
May 13, 2009 at 6:46 am
SSIS would be my preferred method of doing this. You can create a quick import task in SSMS by right clicking on the on the Database to be refreshed, and going to Tasks and Import Data. Pick your tables, and then you can set for each table whether to append the data or drop the existing data.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
May 13, 2009 at 6:47 am
There are a lot of options, but these wil depend on the amount of data and your network configuration. For example, you could:
- backup the source database and restore it as the destination database
- truncate the destinationtables and use a "insert into ... select * from {sourceserver}.{sourcedatabase}.{sourceschema}.{sourcetable}" (use tablock hint will speed up).This option might require a lot of logspace
- truncate the tables and use BCP export / import. This is a very fast option. You could keep the logfile small with the -b option (see documentation)
- if Redgate is not working, did you post a call?
Wilfred
The best things in life are the simple things
May 13, 2009 at 7:45 am
Thanks people, that gives me plenty to be looking into.
Re REDGATE, do you mean place a support call or just post something on the REDGATE forum?
I inherited all this stuff and am not sure if I can ghet official support for REDGATE.
May 13, 2009 at 7:48 am
Redgate to date has been really good at supporting their products, so I'd give that a shot if you are having a particular problem with something. It is in their interests to support their products since that is how they sell newer versions of them.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply