vote up 2 vote down star

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??

flag

64% accept rate

1 Answer

vote up 4 vote down check

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". If you set that to TRUE, the wizard will generate a script with INSERT INTO () statement for your data.

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|flag
I just installed the addin from Codeplex. Nice. Thanks for the info. – Rob Garrison Oct 5 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 at 15:46

Your Answer

Get an OpenID
or

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