chintapalli
Programmer
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.
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.