Given a table or a temp table, I'd like to run a procedure that will output a SQL script (i.e. a bunch of INSERT statements) that would populate the table. Is this possible in MS SQL Server 2000?
Thanks!
|
|
Given a table or a temp table, I'd like to run a procedure that will output a SQL script (i.e. a bunch of INSERT statements) that would populate the table. Is this possible in MS SQL Server 2000? Thanks! |
|||
|
|
|
|
Somebody else tried it here. Please have a look. |
||
|
|
|
You can create a script to do it using a cursor. I just did one yesterday. You can get the idea from this.
|
||
|
|
|
A simple approach:
A more elaborate approach would be to write a procedure that builds the INSERT statement by checking the table's schema, but I've never found a real need to do that in practice. |
||
|