2026-03-12 20:23:15
This commit is contained in:
19
timhall/miscellaneous/column_comments.sql
Normal file
19
timhall/miscellaneous/column_comments.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/miscellaneous/column_comments.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays comments associate with specific tables.
|
||||
-- Requirements : Access to the DBA views.
|
||||
-- Call Syntax : @column_comments (schema) (table-name)
|
||||
-- Last Modified: 15/07/2000
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET VERIFY OFF
|
||||
SET PAGESIZE 100
|
||||
COLUMN column_name FORMAT A20
|
||||
COLUMN comments FORMAT A50
|
||||
|
||||
SELECT column_name,
|
||||
comments
|
||||
FROM dba_col_comments
|
||||
WHERE owner = UPPER('&1')
|
||||
AND table_name = UPPER('&2')
|
||||
ORDER BY column_name;
|
||||
Reference in New Issue
Block a user