Is it possible in SQL express and SQL server mangement studio express to export table content to sql script, like form table
column1 column2
1 2 2
2 3 34
3 4 234
we get script
INSERT INTO [database].[dbo].[table] ([column1] ,[column2]) VALUES (2,2)
INSERT INTO [database].[dbo].[table] ([column1] ,[column2]) VALUES (3,34)
INSERT INTO [database].[dbo].[table] ([column1] ,[column2]) VALUES (4,234)
?
If it is not possible in express editions, is it at least available in developer editions?
Have a look here: http://vyaskn.tripod.com/code.htm#insertsHTH, Jens SUessmeyer.
http://www.sqlserver2005.de
No comments:
Post a Comment