up vote 5 down vote favorite
2
share [g+] share [fb]

I am using SQL Server 2008 Management Studio and have a table I want to migrate to a different db server.

Is there any option to export the data as an insert into SQL script??

link|improve this question

64% accept rate
feedback

2 Answers

up vote 13 down vote accepted

In SSMS in the Object Explorer, right click on the database right-click and pick "Tasks" and then "Generate Scripts".

This will allow you to generate scripts for a single or all tables, and one of the options is "Script Data" (in 2008). If you set that to TRUE, the wizard will generate a script with INSERT INTO () statement for your data.

In 2008 R2 its "Types of Data to Script" which can be "Data Only", "Schema and Data" or "Schema Only" - the default).

alt text

Or if that is too complicated for you, you could also check out the "Data Scripter Add-In" for SQL Server Management Studio:

alt text

and then there's a "SSMS Addin" Package on Codeplex (including source) which promises pretty much the same functionality and a few more (like quick find etc.)

alt text

Marc

link|improve this answer
I just installed the addin from Codeplex. Nice. Thanks for the info. – Rob Garrison Oct 5 '09 at 17:27
Note: all of these only work on 2008 except one. If you need to do this on 2005, use the "Data Scripter Add-In" – Dinah Oct 20 '09 at 15:46
1  
SMSS Add In worked for me in 2008. Data Scripter Add In didn't. – Phil Hale Dec 13 '10 at 9:45
+1 thanks @marc_s handy reference! hope its ok, added info for R2 into ur ans. – MemeDeveloper Oct 26 '11 at 17:57
This is useful, thanks! – cairnz Dec 30 '11 at 23:50
feedback

If you are running SQL Server 2008 R2 the built in options on to do this in SSMS as marc_s described above changed a bit. Instead of selecting Script data = true as shown in his diagram, there is now a new option called "Types of data to script" just above the "Table/View Options" grouping. Here you can select to script data only, schema and data or schema only. Works like a charm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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