INF: ISQL Does Not Send Carriage Returns to SQL Server

ID: Q70246


The information in this article applies to:


SUMMARY

When 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.

For example if we create a file input.sql as follows:

INPUT.SQL:


INSERT INTO MYTABLE VALUES("123 
456")
go 

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 
Version           : 4.2  | 4.2 | 4.2
Platform          : MS-DOS OS/2 WINDOWS 
Issue type        : 

Last Reviewed: March 11, 1999