145

Is there any way to export a Microsoft SQL Server database to an sql script?

I'm looking for something which behaves similarly to mysqldump, taking a database name, and producing a single script which will recreate all the tables, stored procedures, reinsert all the data etc.

I've seen http://vyaskn.tripod.com/code.htm#inserts, but I ideally want something to recreate everything (not just the data) which works in a single step to produce the final script.

030
  • 5,731
  • 12
  • 61
  • 107
Matt Sheppard
  • 1,559
  • 2
  • 11
  • 10
  • @Matt Yes, it doesn't export the data. That's why I mentioned that you should combine it with the script you suggested. This method does builds a script in the correct order though. – Julio César Aug 25 '08 at 02:40
  • Actually, in Mangement Studio 2008, you just have to turn on the "export data" option, and the script will contain both schema and insert statements. – user24161 Feb 10 '10 at 21:37
  • Related: [How to export data as CSV format from SQL Server using sqlcmd?](https://stackoverflow.com/q/425379/55075) – kenorb Feb 26 '18 at 17:03
  • @MattSheppard please consider to accept one of the answers – 030 Feb 12 '19 at 08:34

9 Answers9

129

In SQL Server Management Studio right-click your database and select Tasks / Generate Scripts. Follow the wizard and you'll get a script that recreates the data structure in the correct order according to foreign keys. On the wizard step titled "Set Scripting Options" choose "Advanced" and modify the "Types of data to script" option to "Schema and data"

TIP: In the final step select "Script to a New Query Window", it'll work much faster that way.

solidau
  • 103
  • 3
Julio César
  • 1,566
  • 1
  • 9
  • 4
  • 21
    Just remember to go into advanced options and tell it to script not just the schema, but also the data. – RomanSt Aug 22 '12 at 14:50
  • 3
    @romkyns deserves all the up-votes! "Types of data to script" is the exact option name. You will want to select "Schema and data." – solidau Jan 16 '13 at 20:17
  • 2
    Main issue with scripts generated from SSMS is that they are not ordered correctly to take dependencies into account. This is not a problem for small databases where you can do this manually but it is definitely a problem when database gets over 50 objects. So far we successfully used [ApexSQL Script](http://www.apexsql.com/sql_tools_script.aspx) for this. It’s a premium tool but you can use it in trial mode to get the job done. I think [Red Gate](http://www.red-gate.com/) also has a similar tool. – David Smithers Jun 21 '13 at 08:12
34

Try Sql Server Database Publishing Wizard. You may need to re-order the script to make it run in one shot though because of dependencies but it will include your schema and data.

If you havent got 2005 SQL XMO objects installed, you'll get an error when you run the wizard. You'll want the Microsoft SQL Server 2005 Management Objects Collection

Bart De Vos
  • 17,761
  • 6
  • 62
  • 81
Rob Allen
  • 551
  • 1
  • 6
  • 11
12

I found SQL Dumper pretty useful. It's free so you can give it a try. It lets you choose the database tables and columns, views and even the results of custom queries as SQL insert statements.

Marc Climent
  • 277
  • 6
  • 14
7

Not finding the right tool, I decided to create my own: a sqlserverdump command line utility. Check it out on http://sqlserverdump.codeplex.com/. It will recreate schema and data in a single step.

Daniel
  • 171
  • 1
  • 2
6

Try DBSourceTools. It's designed to script out a source database, and re-deploy to a target database. It scripts schema and data.

6

The recommended solution only works on sql 2000 and 2005. If you're looking to do this on SQL 2008,

You can do it with SQL 2008 without any other plug ins. Right click on the database and select "Tasks -> Generate Scripts...". Select the database and what you want to back up. Click next and set the "Script Data" to true.

Further documentation at link:

http://blog.sqlauthority.com/2011/05/07/sql-server-2008-2008-r2-create-script-to-copy-database-schema-and-all-the-objects-data-schema-stored-procedure-functions-triggers-tables-views-constraints-and-all-other-database-objects/

tzerb
  • 181
  • 1
  • 6
  • http://meta.stackexchange.com/questions/8231/are-answers-that-just-contain-links-elsewhere-really-good-answers – jscott May 29 '12 at 23:14
2

SQL Server Database Publishing Wizard seems indeed to be the best way to do it. The problem with this is that it does not seem to run on Windows 7. I had to use my old computer to use it. On the positive side, it works with older SQL Server versions like 2000.

For newer SQL versions and operating systems, this software might be worth looking into: http://sqlbackupandftp.com/

1

Check the Microsoft SQL Server Schema Dump project (mssql-schema-dump tool at GitHub).

Usage: mssqldump -h data-source-host -u username -p password [-d path/for/files] [-c] [-s] [-a] [-b DB1[,DB2[,DB3]]]

The export supports:

  • DB: Schema, User Types, User Table Types, Triggers, Full Text Catalogues, Full Text StopLists, Stored Procedures, Functions
  • DB.Tables: Schema, Triggers, Indexes, DRI, Statistics
  • DB.Views: Schema, Triggers, Indexes, DRI, Statistics
kenorb
  • 5,943
  • 1
  • 44
  • 53
0

Ombelt make a nice tool for exporting MS SQL server DB's. www.ombelt.com

a lot like other DB's dump facilities.

Works for me.

Tim Williscroft
  • 257
  • 1
  • 7