I have some extended property column descriptions in a SQL Server 2008 database, and when I login to management studio and do a simple query:
Select * from SYS.EXTENDED_PROPERTIES;
I can see all the columns in that table, including the extended property "value" column.
When I have an ASP.NET page login to the db, perform that query, and then bind it to a GridView, it can select everything BUT the "value" column.
Is there some special permission my ASP db user needs to see the value column?