Fick detta felmeddelande när jag skulle använda ntext på en OUTPUT parameter.
Data type 0x63 is a deprecated large object, or LOB, but is marked as output parameter. Deprecated types are not supported as output parameters. Use current large object types instead.
Efter att ha tittat i SQL Server 2005 dokumentationen så hittade jag detta.
Important:
ntext, text, and image data types will be removed in a future version of Microsoft SQL Server. Avoid using these data types in new development work, and plan to modify applications that currently use them. Use nvarchar(max), varchar(max), and varbinary(max) instead.
Tyckte det kunde vara ett betydelsefullt vetande för andra som använder sig av SQL Server 2005.