I have a table with 2 row:CREATE TABLE [dbo].[EABL]( [DSID] [int] IDENTITY(1,1) NOT NULL, [ABLBELNR] [nvarchar](255) NULL)
If I make a XML formatfile which look like this:<?xml version="1.0"?><BCPFORMAT ...> <RECORD> <FIELD ID="1" xsi:type="CharTerm" TERMINATOR="\t" MAX_LENGTH="20"/> </RECORD> <ROW> <COLUMN SOURCE="1" NAME="ABLBELNR" xsi:type="SQLNVARCHAR"/> </ROW></BCPFORMAT>
then the import failed with the following error message: [Microsoft][SQL Native Client]All bound columns are not read-only
If I delete the identity column then the import works correct. What can I do, so that I can import with the identity column ?Thanks for you helpFasse