vote up 0 vote down star

I have a typical dev scenario: I have a SQL 2008 database that I want to copy every so often to my local instance of 2008 Express so that I can do dev, make changes, etc. to the local copy. I have some constraints though: the source db is part of a live e-commerce site in shared hosting so I can't detach it and the hosting service wants me to pay $5 for each ad hoc back up I invoke.

What I'd like is some tool that I can invoke ad hoc to take a snapshot (complete, not incremental) of the live db that I can then import in my local one. I've tried the SSMS 2008 Copy Database Wizard but it gives me an error saying I can't do that with Express. I tried the Generate Scripts tool and thought that was going to make it - the export to my local disk worked but when I went to import using SQLCMD (the script was 1GB so SSMS errored when I tried to open it there), it told me there was a syntax error a few thousand lines in.

Coming from the MySQL world, this process is trivial. All I want is an analog of mysqldump and then a command-line way to import that file into a db. Surely there's an easy way to do this in the SQL Server world? This seems like the most basic use-case for developers.

[ Yes, I've seen a few other questions here that seem similar but I didn't think they had the same constraints. ]

flag

57% accept rate
If you can double-click on the error it should show where the problem is. If you paste that into your question you may find that fixing the problem will then allow the entire sql file you are processing to finish. – James Black Nov 8 at 2:51
Probably not entirely helpful but I can't help but think you need to look at your hosting... that said I appreciate that one often has to compromise in this respect. – Murph Nov 8 at 11:17
Murph - It's CrystalTech and my customer chose them long ago, not me. I do think it's odd they charge $5 for a back up even though they do them daily themselves. Why not just give me a copy at the same time. Oh well. – DaveBurns Nov 10 at 13:05
I had more time to put into this yesterday. I experimented by dumping the script file to separate files per object. Now some were small enough to bring into SSMS. I took one table that had an error in it before when importing via SQLCMD, loaded it into a query window in SSMS and executed it and voila, that worked. So, at least SSMS can correctly read the same scripts it generates. I'm curious what's going wrong with SQLCMD but the real question is, if I have files that are too big for SSMS to open, how can I get it to stream them in instead while executing? I have many big tables it won't open – DaveBurns Dec 10 at 14:12

4 Answers

vote up 1 vote down

Best answer: full backup, restore, pay $5. Anything else seems to me like it'd waste a lot more than $5 worth of time.

link|flag
Fair point and I've considered it. My ad hoc updates would probably be on the order of once a month or at most once every two weeks so the $5 is not a show-stopper. I guess I'm clinging to the scripting idea because it galls me that what seems like an obvious tool to have isn't there. – DaveBurns Nov 10 at 13:03
vote up 0 vote down

If they don't charge you to run queries against the database these tools may help. Granted these are not free tools, but are handy on so many fronts it would be worth buying one. These tools can diff your source db and target db both data and structure or just one or the other, and optionally sync the target database to be just like the source.

http://www.innovartis.co.uk/ http://www.red-gate.com/products/sql%5Fdata%5Fcompare/index.htm

link|flag
vote up 0 vote down

SQL Server Database Publishing Wizard and osql usually do the trick for me with large databases.

link|flag
Hmmm, the publishing wizard project appears dead. When I tried to install it, it claims I need the 2005 Management Objects installed. I went to install the 2008 ones but that installer said I already had them installed. So I can't install this until they update it to know that 2008 exists. – DaveBurns Nov 8 at 8:04
vote up 0 vote down

Try SQL Dumper.

SQL Server Dumper enables you to dump selected SQL Server database tables into SQL INSERT statements, that are saved as local .sql files and contain all the data required to create a duplicate table, or to be used for backup purposes. You can choose to create an individual .sql file for each table, or combine all selected tables into a single file.

link|flag
But if he has some invalid data in there wouldn't SQL Dumper react the same way, throwing an error? – James Black Nov 8 at 2:50
Maybe sql-dumper will generate better dump. He can give it a try. – Davorin Nov 8 at 3:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.