LTRIM() will trim the spaces at the beginning of a text column.
Substring can be used to see is data has a space at the 1st column
SELECT ID, Description
from dbo.tablename
where SUBSTRING( Description, 1, 1 ) = ' '
TheSmilingDBA Thomas LeBlanc MCITP 2008 DBA