NervousRex
Programmer
I need to output a ntext data column in a stored procedure, but i'm getting an error:
Error 409: The assignment operator operation cannot take a ntext data type as an argument.
The decleration is as follows:
@Comments as ntext OUTPUT
The assignment is:
@Comments = Comments
How can I output the comments value while assuring i will not lose any of the text?
Error 409: The assignment operator operation cannot take a ntext data type as an argument.
The decleration is as follows:
@Comments as ntext OUTPUT
The assignment is:
@Comments = Comments
How can I output the comments value while assuring i will not lose any of the text?