hello i am working on this application where i need to import 60k+ user data and insert into different table. i have made a C# application which selects the database and inserts from a text file.like
insert into dbo.dbname ([user_name],[u_id]) values (a,b)
but this apps hangs for 60K+ data so i need to use bulk insert
All this table has two field common namely user_name and u_id so my text input file contains just this two values user_name and u_id(other column values are dynamically inserted like guid,systimestamp..etc which varies for differnt table).
can i have a bulk insert into specific columns ..for example just in user_name and u_id?
the sample of my input text file is given below
abcdedf cd123
hohower ad120
bubble ak324
messi ar016
eagerly waiting to hear from you all
P.S i am using sql server 2005