Se pot adauga comentarii unei tabele utilizānd comanda COMMENT. Comentariile pot fi vizualizate interogānd dictionarul de date, si anume:
- ALL_COL_COMMENTS;
- USER_COL_COMMENTS;
- ALL_TAB_COMMENTS;
- USER_TAB_COMMENTS.
Se pot adauga comentarii de pāna la 2000 bytes coloanelor, tabelelor, etc.
Sinatxa:
COMMENT ON TABLE table | COLUMN table.column IS text;
table numele tabelei;
- column numele coloanei din tabela;
- text textul comentariului.
SQL> COMMENT ON TABLE emp IS "Employee Information"; Comment created. |
Se poate renunta la un comentariu, setāndu-l ca fiind un sir vid ('').
SQL> COMMENT ON TABLE emp IS ""; |
|