Word Wrapped column format
SQL>
SQL> COLUMN table_name FORMAT A20
SQL> COLUMN comments FORMAT A50 WORD_WRAPPED
SQL>
SQL> SELECT table_name, comments
2 FROM dictionary
3 WHERE table_name LIKE '%SEQUENCE%';
USER_SEQUENCES
Description of the user's own SEQUENCEs
ALL_SEQUENCES
Description of SEQUENCEs accessible to
the user
DBA_SEQUENCES
Description of all SEQUENCEs in the
database
SQL>
SQL>
Related examples in the same category