SQL Bulk Insert

SQL for bulk insert into a table:

BEGIN 
     declare @s varchar(400)
     set @s = ‘BULK Insert my_temp_table FROM ”’
                          + @file_name  + ”’ WITH (
                                                                                        FIELDTERMINATOR = ”,”,
                                                                                        ROWTERMINATOR = ”\n”,
                                                                                        FIRSTROW = 1
                                                                                      )’
     print @s
     exec(@s) 

END

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.