Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: SQL Bulk Insert - using " to wrap text fields

    I have used code similar to what follows to import comma, quote delimited text.  The number of rows and columns is usually small. 

    bulk insert dbname.dbo.tablename from '\\servername\directoryname\filename.csv'

     with

     (

              DATAFILETYPE      = 'char',

              FIELDTERMINATOR...

Viewing post 1 (of 1 total)