Thursday, July 31, 2008

Display the description of tables and columns

select *
from sys.tables t
left outer join sys.extended_properties x on x.major_id = t.object_id
order by t.name

No comments:

Post a Comment