I have a table, where I need to replace some values in a column.
The database is running on SQL Server 2005.
The problem is that some of the rows contain more than 4000 characters, which is giving the REPLACE function some trouble, since it demands that I cast the first parameter to the datatype NVARCHAR, and therefore any characters exceeding 4000, is being truncated.
Is there any workaround for this, other than writing an application that handles this issue?
The query in question is:
SELECT
Replace(cast([Database].[dbo].[fruits].[Tekst] as NVARCHAR(MAX)), 'bananas', 'apples')
FROM [Database].[dbo].[fruits]
The column fruits is of datatype Text
Any input appreciated.
I suspect that you have just hit the limit for an individual value in SSMS.
Annoyingly it doesn’t allow you to set this to be unlimited and the only way I know of displaying long text is via casting to XML as below.