OraQA

Oracle Question and Answer

  • Do you have a solution to a problem? Do you have an unanswered question? Login and share it with the Oracle community. More...

Oracle News


Entries RSS feed

Comments RSS feed

How to list all tables that contain a given column name?

January 19th, 2006 By kirtandesai

select c.table_name
from all_tab_cols c
where c.column_name = '&col_name'

The above query returns table names as well as view names.

Note: Answer edited by Admin.

Leave a Reply

You must be logged in to post a comment.

RSS feed for comments on this question