oracle columns in all tables

Solutions on MaxInterview for oracle columns in all tables by the best coders in the world

showing results for - "oracle columns in all tables"
Fabian
17 Nov 2018
1-- Depending on connected user grants:
2SELECT * FROM USER_TAB_COLS WHERE TABLE_NAME = 'my_table';	-- User tables
3SELECT * FROM ALL_TAB_COLS WHERE TABLE_NAME = 'my_table';	-- Available to user
4SELECT * FROM DBA_TAB_COLS WHERE TABLE_NAME = 'my_table';	-- All schemas
5
6-- Columns from all tables in a schema (adapt with USER_..., DBA_... or ALL_...):
7SELECT c.TABLE_NAME, c.DATA_TYPE FROM ALL_TAB_COLS c
8JOIN ALL_TABLES t ON t.OWNER = c.OWNER
9WHERE OWNER = 'my_schema';