0

I am using an Oracle DB with which I'm not familiar.

I would like to export something like a matrix of all tables and fields. Is this possible? Thanks.

user1893148
  • 1,990
  • 3
  • 24
  • 34

2 Answers2

8

Try to use a system table ALL_TAB_COLUMNS

SELECT table_name, column_name 
FROM ALL_TAB_COLUMNS

More information

Robert
  • 25,425
  • 8
  • 67
  • 81
2
SELECT * FROM all_tables;
SELECT * fROM all_tab_columns;

http://www.techonthenet.com/oracle/sys_tables/

Sebas
  • 21,192
  • 9
  • 55
  • 109