I was wondering how to manipulate ntext datatype in stored procedure of SQL Server 2008. We have a column of type ntext in a table. We have to fetch data from that column, parse the data, change and then store it back. For all of the above task we have to use one or more than on stored procedure/function. So data passing between stored procedures are also involved.
|
feedback
|
|
If you're in the position to change the schema, consider changing the data type from If you can't change the schema, convert the
| |||||||||||
feedback
|
nvarchar(max), sincentextis deprecated. Care to share the reason? – Damien_The_Unbeliever Dec 14 '11 at 15:35