asked on
SELECT o.name AS TableName,c.name AS Columnname, c.xtype, T.name,o.type
FROM syscolumns AS c INNER JOIN
sysobjects AS o ON c.id = o.id INNER JOIN
systypes AS T ON c.x[code]type = T.xtype
WHERE T.name ='smallint' and o.type='U'
ORDER BY o.name
ASKER
Microsoft SQL Server 2008 is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning. Major improvements include the Always On technologies and support for unstructured data types.
TRUSTED BY
ASKER