The information in this article applies to:
SUMMARYWhen ISQL is used to insert text or varchar data into Microsoft SQL Server, the data length of the resulting column entry might not be as expected. MORE INFORMATION
ISQL appends a linefeed character at the end of each line of input when
sending the data to SQL server. If the input file contained a carriage
return-linefeed combination the length of the data stored may appear to be
wrong because the carriage return characters are never inserted into
the database.
INPUT.SQL:
And run it by executing the following from a command prompt: >isql /Usa /iINPUT.SQL SQL Server will insert into table MYTABLE 7 bytes: 123 followed by a linefeed, followed by 456") NOTE: When ISQL is used to select the data that was just entered, and is told to write the data to an output file, the linefeed character that it receives from SQL Server is translated back to a carriage return-linefeed combination. Additional query words: isql Windows NT
Keywords : kbtool SSrvISQL SSrvProg SSrvTran_SQL SSrvWinNT |
Last Reviewed: November 5, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |