try this
select sysobjects.name as TableName ,syscolumns.name as ColumnName ,systypes.name as TypeData from
sysobjects inner join
syscolumns on sysobjects.id = syscolumns.id inner join
systypes on syscolumns.xtype = systypes.xtype
where sysobjects.name = 'your table'