I have table which consists column of ntext data type.
I write query that search for some example, like:
SELECT 
    Id,
    NtextColumnName
FROM Table
WHERE 
    NtextColumnName LIKE N'%search_term%'
and got certain number of rows. but, when viewing this column to find this search_term I don't see it, it seems that result is truncated.
I also tried to show result in text and apply Find, but no result.
How can I examine existence of some search term in NtextColumnName column, and also make this result visible?
 
     
    