IMG-LOGO

How to get the length of ntext in SQL Server?

andy - 15 Jan, 2014 4186 Views 0 Comment

You may wonder when you use the function LEN() to get the length of the ntext or image field, you will get an error. This is because the LEN() function is only used to get the length of the nvarchar, varchar or char field types only.

To get the length of the ntext or image field type, you can use the DATALENGTH() function, see below example:

SELECT DATALENGTH(FIELD_NAME) FROM TABLE_NAME

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to restore database using SQL query in TSQL?

If you have a database backup bak file extension and want to restore it using SQL query You can use the built in RESTORE DATABASE function Remember in order to be able to restore a database successfully You need to ...

How to get all table sizes in TSQL?

To get the information about how much space or size used by tables You can retrieve the size information by linking multiple tables in sys tables There are two tables that hold this information The first one is the sys ...