Im using a Bulk Insert Stored Procedure to import a textfile, i can get it into the table without a format file but it imports the " text qualifiers, so frim what i read i need to use a format file. So i tried and keep getting an error i cant seem to get past. The import file is Pipe Delimited with " text qualifiers.Heres the table (Already exists as a permanent table in SQL DB)CREATE TABLE [dbo].[LabelFileImport2]( [SupplierID] [nvarchar](25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [SupplierName] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [PONumber] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [POLine] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [PORel] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [DueDate] [smalldatetime] NULL, [Item] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [VendorItem] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [Price] [money] NULL, [QtyOrdered] [int] NULL, [QtyReceived] [int] NULL, [LastReceived] [nvarchar](10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL) ON [PRIMARY]
And here is the format file:9.0121 SQLCHAR 0 25 "|" 1 SupplierID SQL_Latin1_General_CP1_CI_AS2 SQLCHAR 0 100 "|" 2 SupplierName SQL_Latin1_General_CP1_CI_AS3 SQLCHAR 0 100 "|" 3 PONumber SQL_Latin1_General_CP1_CI_AS4 SQLCHAR 0 100 "|" 4 POLine SQL_Latin1_General_CP1_CI_AS5 SQLCHAR 0 100 "|" 5 PORel SQL_Latin1_General_CP1_CI_AS6 SQLCHAR 0 25 "|" 6 DueDate SQL_Latin1_General_CP1_CI_AS7 SQLCHAR 0 100 "|" 7 Item SQL_Latin1_General_CP1_CI_AS8 SQLCHAR 0 100 "|" 8 VendorItem SQL_Latin1_General_CP1_CI_AS9 SQLCHAR 0 25 "|" 9 Price SQL_Latin1_General_CP1_CI_AS10 SQLCHAR 0 25 "|" 10 QtyOrdered SQL_Latin1_General_CP1_CI_AS11 SQLCHAR 0 25 "|" 11 QtyReceived SQL_Latin1_General_CP1_CI_AS12 SQLCHAR 0 10 "\r\n" 12 LastReceived SQL_Latin1_General_CP1_CI_AS
And heres the error i keep getting.Cannot bulk load because the file "C:\Test\LabelFileImportFormatFile.fmt" could not be read. Operating system error code (null).I know it seems like a permission issue, but before i realized what i was doing i had "/t" for the delimiters and got and error saying invalid column number in the format file