- Documentación
- ALL_TABLES:
ALL_TABLES describes the relational tables accessible to the current user.
- DESCRIBE:
Lists the column definitions for the specified table, view or synonym, or the specifications for the specified function or procedure.
- ¿A que tablas se tiene acceso?
SQL> select table_name from all_tables order by 1;
- Generar archivo csv con resultado de select (sqlcl):
set sqlformat csv spool consulta.csv select column as "header_column_1", ... spool off