I have the following csv file layout.
"","","99999999","","10-10-01","GBP","22/12/09","Close",-80.12,"CHQ","725472","","",
I wish to do a BULK INSERT. The fields are comma delimited but also double quote delimited. Is there a way to 'remove' the double quotes during the bulk insert.
Table def;
CREATE TABLE [dbo].[StatementHold
[Group] [char](30) NULL,
[AccID] [char](30) NULL,
[AccountNo] [char](20) NULL,
[Type] [char](30) NULL,
[BankCode] [char](15) NULL,
[Curr] [char](20) NULL,
[Date] [date] NULL,
[AsAt] [char](10) NULL,
[Amount] [money] NULL,
[TLACode] [char](10) NULL,
[ChequeNo] [char](20) NULL,
[Status] [char](20) NULL,
[Description] [char](100) NULL
) ON [PRIMARY]