I was wondering, if i got fields in table A wanted to do some transformation and copy it to table B, what is the fastest way in a store procedure? i have to do
insert into B
select field1
, field2
etc.
from A
do i suppose to enable "select into / bulk copy" for faster performance? or in a database properties i have already put simple as logging, instead of full and select into/bulk copy..
which one perform more logging ? select into / bulk copy or simple???????
Edgar