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??
|
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??
| ||||
|
feedback
|
|
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).
Or if that is too complicated for you, you could also check out the "Data Scripter Add-In" for SQL Server Management Studio:
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.) Marc | |||||||||||||
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 | |||
|
feedback
|