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 8721787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:16:36+00:00 2026-06-13T07:16:36+00:00

I have a 1000 tables in the SQL Server Database. If I wanted to

  • 0

I have a 1000 tables in the SQL Server Database.

If I wanted to add a brief description of what each table does in my application, should I be creating another table to maintain that information? Or is there a better way to this?

For example ; If there is a table [PurchaseOrdersConcrete] and I want to note that – This table stores all POs from Fortune500 companies.

Should I create another meta-data table for this purpose, or is there a – Notes – column somwhere in SQL Server already … (say in sys.tables)?

  • 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-13T07:16:37+00:00Added an answer on June 13, 2026 at 7:16 am

    You do that via Extended Properties. An msdn overview of the usage of them can be found here. I have used them for the exact purpose you describe above.

    The easiest way to manage them is directly within SSMS by right clicking on your object and selecting properties. But you can also work with them from within your application via tsql.

    To add new extended properties use sp_addextendedproperty.

    To retrieve existing extended properties a typical approach is to query ::fn_listextendedproperty as this example below shows.

    SELECT   objType, objName, Type, Value
    FROM   ::fn_listextendedproperty (null, 'user',
     'dbo', 'table','<your table>', null, null)
    

    Update and delete operations on them are made possible through use of sp_updateextendedproperty and sp_dropextendedproperty


    Further, SSMS makes use of them for some of it’s own metadata. A way to see them in action is take a look at one of your views in SSMS. Right click on it and select properties. Then click on ‘extended properties’. You’ll likely see an entry that says something about MS_DiagramPane???. This is where MS stores the layout of your view so that every time you open the view in design mode it looks the same way you left it last time.

    These have been available as far back as SQL2000 but have gained widespread use more recently.

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

Sidebar

Related Questions

I have a payment table in a SQL Server 2008 database, this holds both
I have a following table in SQL Server 2008 database: CREATE TABLE [dbo].[Actions]( [ActionId]
I have an empty Table in SQL Server 2008 Database, I want to brink
I have a database in SQL Server in which there is a table with
I have a SQL Server 2008 database and I have a problem with this
My application is using SQL Server 2008 and we need to add functionality for
I have created a set of tables (around 20) in SQL Server 2008 and
i have this procedure for inserting rows in tables(sql server 2005) CREATE PROCEDURE ans_insert
I have a table in SQL SERVER that has several columns. One of this
I have got the following SQL statement (SQL Server): DECLARE @atr nvarchar(255), @con nvarchar(1000),

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.