say i want to extract a few rows from table 1 and insert it into table 2... how do i do it??
one method is to create an sql reader to extract data from table 1 then use stored proc to insert into table 2
i'm thinking of the performance whether will it lag when i execute the command
one method i use last time with vb is that i create 2 recordset then just insert data from one recordset to another...
what's the best way i can do it using vb.net??? btw i'm using msde (sql server) as my db
one method is to create an sql reader to extract data from table 1 then use stored proc to insert into table 2
i'm thinking of the performance whether will it lag when i execute the command
one method i use last time with vb is that i create 2 recordset then just insert data from one recordset to another...
what's the best way i can do it using vb.net??? btw i'm using msde (sql server) as my db