I have a csv that I need to import to a table, the problem is the number of columns in the csv is 1282 which is greater than the number of columns I can create a table for.Now i have read up a little on creating a table with Sparse columns which I have duly done (cut down version shown)CREATE TABLE [dbo].[mytable_Sparse]( [Id] [varchar](50) SPARSE NULL, [NewID] [varchar](50) SPARSE NULL, [RfA] [varchar](max) SPARSE NULL, [CType] [varchar](50) SPARSE NULL, [P_Id] [varchar](50) SPARSE NULL, [Identifier] [varchar](50) SPARSE NULL, [UpdateType] [varchar](50) SPARSE NULL, [BulkN] [varchar](50) SPARSE NULL, [TInd] [varchar](50) SPARSE NULL, [cs] [xml] COLUMN_SET FOR ALL_SPARSE_COLUMNS NULL) ON [PRIMARY]
Now i come to my little problem.How do I (Bulk?) import the csv into this new table, I've googled for hours and can't seem to find anything specific to Bulk inserting from a csv into a Sparse column Set table.Can anyone help please, some examples would be good.Thanks.B