Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text in multiple lines: Is this a bug in SQL Server 7

Status
Not open for further replies.

chintapalli

Programmer
Mar 15, 2002
10
US
Hi,

One of my SP's parameter's text spans into multiple lines. But the SP adds the text of the first line only and ignores rest of it.

The following SP inserts only the text 'Arithmetic' and NOT 'Arithmetic operation resulted in an overflow.' for the first field of the table in the database.

EXECUTE ErrorInsert 'Arithmetic
operation
resulted
in
an
overflow.', '
But when I change the entire text to fit into one line like this, it inserts the entire string:
EXECUTE ErrorInsert 'Arithmetic operation resulted in an overflow.', '
Anyone know why?

Thanks.

Harish.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top