I have a database where I put comments in the Description property of many columns in my tables to describe the columns. The Description property apparently is implemented as an Extended Property named MS_Description.
Now I need to copy the database to SQL Azure, that does not permit Extended Properties. What is the Transact SQL commands available to search every column for the Extended Property MS_Description and delete it.
Here you have a detailed explanation on how to list extended properties on SQL Server 2008R2.
Then at the end of that page you have several references, one of them is to the
sp_dropextendedproperty. Make use of it at will.One blog with useful information and detailed samples.
Here you have a code sample to show all extended properties for columns in a table:
Even more samples here