I am trying to find a way to extract information about my tables in SQL Server (2008).
The data I need needs to include the description of the table (filled from the Description property in the Properties Window), a list of fields of that table and their respective data types.

Is there any way I can extract such meta-data? I presume I have to use some sys sp but I'n not sure which one.

link|improve this question

By the way... where can you see the description? It doesn't seem to display in the properties in Management Studio. – Andomar May 20 '09 at 11:52
1  
When you modify a table (Design), it's in the Properties Window...under 'Database Name' and over 'Schema' (in sql server 2008) – Andreas Grech May 20 '09 at 11:56
Re your comment; it should have been = 0 (not IS NULL); but it has to be filtered to avoid you finding column descriptions against the table – Marc Gravell May 20 '09 at 12:16
feedback

6 Answers

up vote 15 down vote accepted

To get the description data, you unfortunately have to use sysobjects/syscolumns to get the ids:

SELECT  	u.name + '.' + t.name AS [table],
            td.value AS [table_desc],
    		c.name AS [column],
    		cd.value AS [column_desc]
FROM    	sysobjects t
INNER JOIN  sysusers u
    ON		u.uid = t.uid
LEFT OUTER JOIN sys.extended_properties td
    ON		td.major_id = t.id
    AND 	td.minor_id = 0
    AND		td.name = 'MS_Description'
INNER JOIN  syscolumns c
    ON		c.id = t.id
LEFT OUTER JOIN sys.extended_properties cd
    ON		cd.major_id = c.id
    AND		cd.minor_id = c.colid
    AND		cd.name = 'MS_Description'
WHERE t.type = 'u'
ORDER BY    t.name, c.colorder

You can do it with info-schema, but you'd have to concatenate etc to call OBJECT_ID() - so what would be the point?

link|improve this answer
Info-schema seemed easier to retrieve the data type. I think you could retrieve it here with a join to systype on c.xtype. – Andomar May 20 '09 at 11:44
I agree with you there; info-schema makes this very easy... there is probably some ideal merge between the two. – Marc Gravell May 20 '09 at 11:46
Marc, why did you include 'td.minor_id IS NULL' ? With this addition it's not retrieving the description, but if if I remove it, it works. – Andreas Grech May 20 '09 at 11:50
@Dreas: I'll double check what it should be... – Marc Gravell May 20 '09 at 12:14
The table description is working now, with the = 0 – Andreas Grech May 20 '09 at 12:19
feedback

Generic information about tables and columns can be found in these tables:

select * from INFORMATION_SCHEMA.TABLES
select * from INFORMATION_SCHEMA.COLUMNS

The table description is an extended property, you can query them from sys.extended_properties:

select 
    TableName = tbl.table_schema + '.' + tbl.table_name, 
    TableDescription = prop.value,
    ColumnName = col.column_name, 
    ColumnDataType = col.data_type
FROM information_schema.tables tbl
INNER JOIN information_schema.columns col 
    ON col.table_name = tbl.table_name
LEFT JOIN sys.extended_properties prop 
    ON prop.major_id = object_id(tbl.table_schema + '.' + tbl.table_name) 
    AND prop.minor_id = 0
    AND prop.name = 'MS_Description' 
WHERE tbl.table_type = 'base table'
link|improve this answer
You may have to be slightly careful how you call OBJECT_ID() to disambiguate with different owners – Marc Gravell May 20 '09 at 11:42
MS_Description_Table? Also - the table metadata and column metadata is stored separately; you need to handle the minor_id appropriately – Marc Gravell May 20 '09 at 11:45
Good points all edited now! Except minor_id which appears not to work per the comment on your answer. – Andomar May 20 '09 at 11:53
Just like as I said to Marc, when you include 'prop.minor_id IS NULL', the description is not retrieved, but when you remove it, it works – Andreas Grech May 20 '09 at 11:54
It should have been minor_id = 0; otherwise you'll find column descriptions against the table – Marc Gravell May 20 '09 at 12:17
show 2 more comments
feedback

You could try sp_help <Name of object>

link|improve this answer
feedback

Using Object Catalog Views:

SELECT  T.NAME AS [TABLE NAME], C.NAME AS [COLUMN NAME], P.NAME AS [DATA TYPE], P.MAX_LENGTH AS[SIZE],   CAST(P.PRECISION AS VARCHAR) +‘/’+ CAST(P.SCALE AS VARCHAR) AS [PRECISION/SCALE]
FROM ADVENTUREWORKS.SYS.OBJECTS AS T
JOIN ADVENTUREWORKS.SYS.COLUMNS AS C
ON T.OBJECT_ID=C.OBJECT_ID
JOIN ADVENTUREWORKS.SYS.TYPES AS P
ON C.SYSTEM_TYPE_ID=P.SYSTEM_TYPE_ID
WHERE T.TYPE_DESC=‘USER_TABLE’;

Using Information Schema Views

SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, ORDINAL_POSITION,
       COLUMN_DEFAULT, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH,
       NUMERIC_PRECISION, NUMERIC_PRECISION_RADIX, NUMERIC_SCALE,
       DATETIME_PRECISION
FROM ADVENTUREWORKS.INFORMATION_SCHEMA.COLUMNS
link|improve this answer
feedback

If you simply want to view the information in a convenient way, Red Gate's SQL Prompt might help.

If you hover over the object text in a query window SQL Prompt will display the MS_Description extended property text in a tooltip. Clicking on the tooltip will open a dialog displaying the column information and also the object's DDL.

http://www.red-gate.com/products/sql-development/sql-prompt/

link|improve this answer
feedback

If it is OK to use .NET code I'd suggest using SMO: http://msdn.microsoft.com/en-us/library/ms162169.aspx, In your particular case it would be the Table class http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.table.aspx This would be a more portable solution than using version specific system views and tables.

If this is something you are going to use on a regular basis - you might want to write a simple console application, perhaps with a runtime T4 code generator http://msdn.microsoft.com/en-us/library/ee844259.aspx

If it's just a one-off task - you could use my LiveDoco's( http://www.livedoco.com ) export to XML feature with an optional XSLT transform or I'm sure there are free tools out there that can do this. This one looks okay: http://sqldbdoc.codeplex.com/ - supports XML via XSLT, but I'm not sure if you can run it for a selection of tables though (With LiveDoco you can).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.