Problem with using fn_listextendedproperty()
MySQL
1
Posts
1
Posters
1
Views
1
Watching
-
Hi All, I am using fn_listextendedproperty() to fetch column description of table ,it works perfect for table. But if I want coulm des cription of view columns it won't give me result. This Work fine FN_LISTEXTENDEDPROPERTY (NULL, 'schema', 'dbo','Table' ,'Company', 'column', default) It won't work FN_LISTEXTENDEDPROPERTY (NULL, 'schema', 'dbo','View' ,'CompanyView', 'column', default) Please help to to resolve this problem... Thanks.