I have a strange issue: i created a simple stored procedure in Microsoft SQL Server:
@id INT,
@ntextParameter NTEXT,
...
UPDATE xxx SET [Field] = @ntextParameter WHERE ID = @id
but when i execute it with a long text, it update the table and simply cut the text without any visible error