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.

2
  • Export a diagram from a utiity? <stackoverflow.com/a/12101819/1504882> Commented Jul 29, 2013 at 19:13
  • What do you say with matrix? Do you want a sql query or something else (diagram,etc)? Commented Jul 29, 2013 at 19:24

2 Answers 2

8

Try to use a system table ALL_TAB_COLUMNS

SELECT table_name, column_name 
FROM ALL_TAB_COLUMNS

More information

Sign up to request clarification or add additional context in comments.

Comments

2
SELECT * FROM all_tables;
SELECT * fROM all_tab_columns;

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

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.