Viewing 3 posts - 1 through 3 (of 3 total)
I want to see the insert script used along with the data that is used in the creation of that table.Can you please
write any query or procedure for to...
April 25, 2012 at 5:14 am
#1478859
I don't want that insert generate script.I want to see which insert query is used in inserting data into the table.
April 25, 2012 at 5:11 am
#1478855
select * into table2 from table1
This query will automatically create table2 in your database.You can modify the above query as
per your need.Many times i had use this query in...
April 25, 2012 at 4:20 am
#1478831