Is it possible to use BulkCopy for copying data from a table variable to Real table (SQL table) where both schema are identical?
Asked
Active
Viewed 417 times
0
-
insert into ... select from .... – Mitch Wheat Feb 13 '14 at 07:04
2 Answers
0
Are you looking for this
insert into realTable(col1,col2) select t1.col1,t1.col2 from variableTable as t1

Akshay
- 1,831
- 1
- 18
- 22