You can use the SUBSTRING function, which "returns part of a character, binary, text or image":
SUBSTRING ( value_expression , start_expression , length_expression )
So, to select the first 100 characters from the Description NTEXT column, you should use something like the following:
SELECT SUBSTRING(Description, 1, 100) as truncatedDescription FROM MyTable;
source share