0

How can I export only table names and its columns to an excel sheet from a database using Oracle SQL Developer version 4.

I tried exporting database feature, but it does not allow excel export for Metadata.

Sorry if this is asked in wrong forum

1 Answer 1

4

Query what you want eg:

select owner,table_name,column_name
from dba_tab_cols
where owner = 'SCHEMA';

Then right click on the result and choose Eksport.... Choose a format and save.

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.