Returns the number of bytes used to represent any expression.
DATALENGTH ( expression )
Is an expression of any data type.
int
The following example returns the DATALENGTH of each company name listed in the Customers table in the Northwind database.
SELECT DATALENGTH(CompanyName), CompanyName FROM Customers