is it possible to retrieve by using connection.getschema() the description item from a sql server table column, just like it’s possible to retrieve the column name, data type, is nullable, column default value, etc? if so, how?
is it possible to retrieve by using connection.getschema() the description item from a sql
Share
On Sql Server 2005, you can use this system table value function:
fn_listextendedproperty (Transact-SQL)
or try a query, from from this article, like this: