Results 1 to 3 of 3

Thread: table column comments SQL Server 2000

  1. #1
    Join Date
    Jul 2006
    Posts
    23

    table column comments SQL Server 2000

    How do I create or add them with/to a table in SQL Server 2000?

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    If you are in EM, go to design table and when you click on a column you can add description at the bottom.

    If you like to view all the descriptions execute the following command.
    select object_name(id), name from sysproperties

  3. #3
    Join Date
    Sep 2002
    Posts
    5,938
    Or add column comments with sp_addextendedproperty, and view them with fn_listextendedproperty.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •