Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am adding some new columns to a table and want to add documentation to the table DDL for future developers. How does one go about this?

share|improve this question
imho not in the database itself - if a table is normalized, the column name should speak for itself mostly. – Najzero Feb 12 at 14:40
For reasons too complicated to explain, comments are definitely required for this new column. – oscilatingcretin Feb 12 at 14:42
30 characters is often not always sufficient for describing the column. Comments do serve a purpose to help self-document the table or the columns. Plus these comments could later be extracted and loaded into an enterprise metadata manager or data dictionary. – Rob Paller Feb 12 at 15:17

2 Answers

Generic Syntax:

COMMENT ON {OBJECT} {OBJECTNAME} AS '{255 characters of text};

Detailed Syntax Examples:

COMMENT ON TABLE {DATABASE}.{TABLENAME} AS '{255 characters of text}';
COMMENT ON COLUMN {DATABASENAME}.{TABLENAME}.{COLUMNNAME} AS '{255 characters of text}';
COMMENT ON USER {USERNAME} AS '{255 characters of text}';
COMMENT ON DATABASE {DATABASENAME} AS '{255 characters of text}';
share|improve this answer

In addition to adding object COMMENTs, you can add in-line comments to view definitions. Since most access is always through a view, that's how we communicate the DBA responsible for the table and document changes. For example:

replace view VIEWDB.vmy_table as
locking DATADB.my_table for access
select *
from  DATADB.my_table
/* This is a comment */
/* Created by Bob */

The nice thing about this technique is that the comments are shown when you do a SHOW SELECT * FROM VIEWDB.vmy_table.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.