Link to home
Start Free TrialLog in
Avatar of CDFA_Inc2
CDFA_Inc2

asked on

Viewing SQL Server 2005 Column Properties

Is there a way to view the Column Properties / Table Designer / Description using an SQL Server 2005 Query.
Avatar of CDFA_Inc2
CDFA_Inc2

ASKER

SELECT objname,value
FROM fn_listextendedproperty(NULL, 'user', 'dbo', 'table', 'tablename', 'column', NULL or columnName)
If there are any other ways let me know and I will accept your answer.
SOLUTION
Avatar of john-m-calvert
john-m-calvert

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial