vote up 3 vote down star

Is there an equivalent schema & data export/dumping tool for MSSQL as there is for MySQL with mysqldump. Trying to relocate a legacy ASP site and I am way out of happy place with working on a windows server.

Note: The DTS export utility own seems to export data, without table defs. Using the Enterprise Manager and exporting the db gets closer with exporting the schema & data... but still misses stored procedures.

Basically looking for a one does it all solution that grabs everything I need at once.

flag

Please reconsider your choice of correct answer. The answer that refers to amScript is the one that best answers your actual question. The answer you marked as correct only offers a workaround; people who find your question by googling will not find that answer very useful. – Timwi Sep 17 at 16:39

6 Answers

vote up 3 vote down check

The easiest way is the sql server database publishing wizard.
-Open source -Free -Does exactly what you want -Developed by microsoft

It does not have all the features of mysqldump but it is close enough.

http://www.codeplex.com/sqlhost/wiki/view.aspx?title=database%20publishing%20wizard

link|flag
This is a really good answer :) – graffic Jan 29 at 7:43
How do I run this? Their download does not contain any EXE file that I could run, nor any SLN or CSPROJ file that I could open in Visual Studio. Also, I notice LOADS of comments asking for help on how to use this. The impression I get is that it's the crappest piece of junk ever! – Timwi Sep 17 at 15:34
vote up 3 vote down

The easiest way to move a Database would be to use SQL Server Management Studio to Export the database to another server, or if that doesn't work, make a backup like other's had suggested and restore it elsewhere.

If you are looking for a way to dump the table structure to SQL as well as create insert scripts for the data a good free option would be to use amScript and amInsert from http://www.asql.biz/en/Download2005.aspx.

If you want a good pay version I would check out Red-Gate SQL Compare and Red-Gate SQL-Data Compare. These tools are probably overkill though and probably a bit pricey if you don't intend to use them a lot. I would think it would mostly be relegated to DBAs. You can look at the Red-Gate tools at http://www.red-gate.com/.

link|flag
As an answer to the questions title, the amScript/amInsert tools are exactly what I was looking for. +1 – Hafthor Sep 2 at 16:43
This is definitely the correct answer to the question. – Timwi Sep 17 at 15:45
vote up 0 vote down

easiest would be a backup and restore or detach and attach

or script out all the tables and BCP out the data then BCP in the data on the new server

or use DTS/SSIS to do this

link|flag
vote up 0 vote down

SQL Enterprise manager or SQL Server Management studio have wizard based approaches, and the latter will generate the scripts so you can see how its done.

You could also use the BACKUP and RESTORE commands. More detail here: http://msdn.microsoft.com/en-us/library/ms189826.aspx

link|flag
vote up 0 vote down

If you can get DTS or Integration Services to connect to both servers, you can use the wizards to 'copy objects' from one server to another. 'Copy Database' requires that the two servers can authenticate with each other, which typically means being on the same domain and that the service runs under a domain logon.

Otherwise, you can generate a script for the schema, and you can use an Integration Services/DTS package to export data to a file, then import it on the other.

We now generally use SQL Compare and SQL Data Compare. Red Gate's SQL Packager might also be an option.

link|flag
vote up 0 vote down

Well, Mysqldump is a series of SQL statements. You can do this with DTS, but why not just create a backup and restore it on your new machine?

If you want to do it via SQL: http://msdn.microsoft.com/en-us/library/aa225964(SQL.80).aspx

Or just right click the DB and hit Tasks -> Backup (http://msdn.microsoft.com/en-us/library/ms187510.aspx)

link|flag
I guess the problem is figuring out what the new service expects as far as format... We're moving the website and its DB from a dedicated win server to a shared hosting provider and the closest I can get is via plesk. – David Sep 17 '08 at 17:39
1st mysqldump is a command. DTS you click. You cannot automate it. 2nd The backup command writes in the server hard drive. 3rd Clicks are difficult to automate – graffic Jan 29 at 7:29

Your Answer

Get an OpenID
or

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