Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8524905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T07:49:11+00:00 2026-06-11T07:49:11+00:00

I have a database where I put comments in the Description property of many

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T07:49:13+00:00Added an answer on June 11, 2026 at 7:49 am

    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:

    USE AdventureWorks2008R2;
    GO
    SELECT major_id, minor_id, t.name AS [Table Name],
           c.name AS [Column Name],
           value AS [Extended Property]
      FROM sys.extended_properties AS ep
     INNER JOIN sys.tables AS t ON ep.major_id = t.object_id 
     INNER JOIN sys.columns AS c ON ep.major_id = c.object_id
           AND ep.minor_id = c.column_id
     WHERE class = 1;
    GO
    

    Even more samples here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple tables in a mysql database and I am trying to put
I have created a shell script to backup my webfiles + database dump, put
I am using the embedded version of RavenDb and have put the physical database
Hey guys quick question, I have an entry that I put in my database,
I have database with multiple tables in Microsoft SQL Server with schema in tables
I have database, and in one the tables I need change the values of
i have database with two values id and val so i want to ask
I have database application, I want to allow the user to restore the deleted
I have Database with date field. I see the time like: 1900-01-01 13:38:00.000 How
i have database table like this +-------+--------------+----------+ | id | ip | date |

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.