We are writing a new application, and while testing, we will need a bunch of dummy data. I've added that data by using MS Access to dump excel files into the relevant tables.

Every so often, we want to "refresh" the relevant tables, which means dropping them all, re-creating them, and running a saved MS Access append query.

The first part (dropping & re-creating) is an easy sql script, but the last part makes me cringe. I want a single setup script that has a bunch of INSERTs to regenerate the dummy data.

I have the data in the tables now. What is the best way to automatically generate a big list of INSERT statements from that dataset?

I'm thinking of something like in TOAD (for Oracle) where you can right-click on a grid and click Save As->Insert Statements, and it will just dump a big sql script wherever you want.

The only way I can think of doing it is to save the table to an excel sheet and then write an excel formula to create an INSERT for every row, which is surely not the best way.

I'm using the 2008 Management Studio to connect to a SQL Server 2005 database.

link|improve this question

1  
Wow, I just checked on my installation and, you're right, the "script table as" -> "INSERT" only gives you a insert template, not a page of inserts with your actual data! I hope your question gets answered because I'd like an easy way to do what you're asking too. – JoeCool Jun 11 '09 at 17:46
feedback

15 Answers

up vote 111 down vote accepted

Microsoft should advertise this functionality of SSMS 2008. The feature you are looking for is built into the Generate Script utility, but the functionality is turned off by default and must be enabled when scripting a table.

This is a quick run through to generate Insert statements for all of the data in your table, using no scripts or add-ins to SQL Management Studio 2008:

  1. Right click on the database and go to Tasks -> Generate Scripts
  2. Select the tables (or object) that you want to generate the script against.
  3. Go to Set scripting options and click on the Advanced button.
  4. In the General category, go to Type of data to script
  5. There are 3 options: Schema Only, Data Only, and Schema and Data. Select the appropriate option and click on OK.

You will then get the CREATE TABLE statement and all of the INSERT statements for the data straight out of SSMS.

link|improve this answer
   
Awesome! Thank you! – Matt Dell Jul 28 '10 at 23:14
1  
Damn,..all these years and never spotted that! – Stimul8d Feb 11 '11 at 11:53
1  
Be sure to read Noonand's comment below -- the check box is not under SCRIPT DATA = TRUE, instead it is under General section, choose the appropriate option for 'Types of data to script'. – Richard West May 21 '11 at 21:09
My colleague described this feature as being like finding a needle in a haystack. Very useful but not very easy to find. – Adam Jones Aug 8 '11 at 0:57
Great solution ! Thank you – alnaji Sep 17 '11 at 12:35
show 5 more comments
feedback

We use this stored procedure - it allows you to target specific tables, and use where clauses. You can find the text here.

For example, it lets you do this: To generate INSERT statements for table 'titles':

EXEC sp_generate_inserts 'titles'
link|improve this answer
This worked perfectly for me, except that the generated INSERTs don't have a semicolon @ the end. I added that and used it with success. Thanks for answering the qstn! – JosephStyons Jun 11 '09 at 19:57
I'm glad it worked well for you! – Shane Fulmer Jun 11 '09 at 20:21
1  
@jcollum - it's actually not a built-in stored procedure. If you follow the link, you can get the text for the stored proc. – Shane Fulmer Jul 28 '09 at 20:32
3  
Nice. I normally use SSMS Tools Pack in SSMS 2005/2008, but working on a 2000 job, this is really cool. – Gavin Nov 11 '09 at 10:25
1  
I'm Getting - Msg 536, Level 16, State 5, Procedure sp_generate_inserts, Line 331 Invalid length parameter passed to the SUBSTRING function. Msg 536, Level 16, State 5, Procedure sp_generate_inserts, Line 332 Invalid length parameter passed to the SUBSTRING function. Msg 50000, Level 16, State 1, Procedure sp_generate_inserts, Line 336 No columns to select. There should at least be one column to generate the output Why? – Nimrod Shory Dec 7 '09 at 16:11
show 7 more comments
feedback

You can use SSMS Tools Pack (available for SQL Server 2005 and 2008). It comes with a feature for generating insert statements.

http://www.ssmstoolspack.com/

link|improve this answer
Thats a great tool. Love how it puts a Begin Tran and Rollback in when you create new queries. – Jeremy Thompson Jun 23 '11 at 3:41
This is going to save me so much time moving data between test and production enviroments – carrot_programmer_3 Sep 16 '11 at 12:06
feedback

As mentioned by @Mike Ritacco but updated for SSMS 2008 R2

  1. Right click on the database name
  2. Choose Tasks > Generate scripts
  3. Depending on your settings the intro page may show or not
  4. Choose 'Select specific database objects',
  5. Expand the tree view and check the relevant tables
  6. Click Next
  7. Click Advanced
  8. Under General section, choose the appropriate option for 'Types of data to script'
  9. Complete the wizard

You will then get all of the INSERT statements for the data straight out of SSMS.

link|improve this answer
Exactly what I was looking for - thanks! – robyaw May 17 '11 at 13:16
hmm I don't know if we're using different versions of SSMS 2008 R2 but there's no 'advanced' option for me at all. what I had to do was select 'script data' in the 'choose script options' step. (BTW that option is not there in express edition) – Andy Oct 7 '11 at 11:39
feedback

Perhaps you can try the SQL Server Publishing Wizard http://www.microsoft.com/downloads/details.aspx?FamilyId=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en

It has a wizard that helps you script insert statements.

link|improve this answer
feedback

The first link to sp_generate_inserts is pretty cool, here is a really simple version:

DECLARE @Fields VARCHAR(max); SET @Fields = '[QueueName], [iSort]' -- your fields, keep []
DECLARE @Table  VARCHAR(max); SET @Table  = 'Queues'               -- your table

DECLARE @SQL    VARCHAR(max)
SET @SQL = 'DECLARE @S VARCHAR(MAX)
SELECT @S = ISNULL(@S + '' UNION '', ''INSERT INTO ' + @Table + '(' + @Fields + ')'') + CHAR(13) + CHAR(10) + 
 ''SELECT '' + ' + REPLACE(REPLACE(REPLACE(@Fields, ',', ' + '', '' + '), '[', ''''''''' + CAST('),']',' AS VARCHAR(max)) + ''''''''') +' FROM ' + @Table + '
PRINT @S'

EXEC (@SQL)

On my system, I get this result:

INSERT INTO Queues([QueueName], [iSort])
SELECT 'WD: Auto Capture', '10' UNION 
SELECT 'Car/Lar', '11' UNION 
SELECT 'Scan Line', '21' UNION 
SELECT 'OCR', '22' UNION 
SELECT 'Dynamic Template', '23' UNION 
SELECT 'Fix MICR', '41' UNION 
SELECT 'Fix MICR (Supervisor)', '42' UNION 
SELECT 'Foreign MICR', '43' UNION 
...
link|improve this answer
feedback

Jane Dallaway's stored procedure: http://jane.dallaway.com/downloads/SQL/spu_generateInsert.sql. Documentation is a series of blog posts: http://jane.dallaway.com/blog/labels/spu_generateinsert.html

link|improve this answer
1  
Just for reference, these have moved now: stored procedure: docs.google.com/… documentation as a series of blog posts: jane.dallaway.com/tag/spu_generateinsert – Jane Feb 7 '10 at 9:35
feedback

Don't use inserts, use BCP

link|improve this answer
Valid in most cases but there can be good reasons for wanting to use inserts. – Steve Homer Oct 27 '10 at 13:09
Indeed, @Steve Homer. Grabbing a good DB initialization script, e.g. for EF Code First projects. Yep, there are many times when I've needed this functionality. BCP just didn't fit. – Chris Simmons Dec 20 '11 at 20:01
feedback

I use sqlite to do this. I find it very, very useful for creating scratch/test databases.

sqlite3 foo.sqlite .dump > foo_as_a_bunch_of_inserts.sql

link|improve this answer
feedback

This one so far has worked for me, although they might be bugs I have not discovered yet .

link|improve this answer
feedback

why not just backup the data before your work with it, then restore when you want it to be refreshed?

if you must generate inserts try: http://vyaskn.tripod.com/code.htm#inserts

link|improve this answer
I'd like the flexibility to edit the data in the INSERTs if I want to. Other than that, no real reason... I need to research the syntax of RESTORE and BACKUP so I can do that from a script. – JosephStyons Jun 11 '09 at 17:46
feedback

Not sure, if I understand your question correctly.

If you have data in MS-Access, which you want to move it to SQL Server - you could use DTS.
And, I guess you could use SQL profiler to see all the INSERT statements going by, I suppose.

link|improve this answer
feedback

Do you have data in a production database yet? If so, you could setup a period refresh of the data via DTS. We do ours weekly on the weekends and it is very nice to have clean, real data every week for our testing.

If you don't have production yet, then you should create a database that is they want you want it (fresh). Then, duplicate that database and use that newly created database as your test environment. When you want the clean version, simply duplicate your clean one again and Bob's your uncle.

link|improve this answer
feedback

I have also researched lot on this, but I could not get the concrete solution for this. Currently the approach I follow is copy the contents in excel from SQL Server Managment studio and then import the data into Oracle-TOAD and then generate the insert statements

link|improve this answer
feedback

I'm using SSMS 2008 version 10.0.5500.0. In this version as part of the Generate Scripts wizard, instead of an Advanced button, there is the screen below. In this case, I wanted just the data inserted and no create statements, so I had to change the two circled propertiesScript Options

link|improve this answer
feedback

protected by Bo Persson Apr 22 at 11:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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