Viewing 2 posts - 1 through 2 (of 2 total)
set identity_insert aaa on
insert into mytab(id, name) values (1,'fred')
insert into mytab(id, name) values (2,'sam')
insert into mytab(id,name) select custid, name from customer
set identity_insert aaa off
1) You need to specify the column...
June 19, 2003 at 6:25 am
#462092
I had an experience where the performance was much worse with a UDF. I was summarizing values in a table with several million rows and was using a UDF in...
February 10, 2003 at 9:24 am
#448544