Find table Name based on column name

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SNFBS
    New Member
    • Mar 2013
    • 1

    #1

    Find table Name based on column name

    how to get the table name based on column name?
    I got column name but i dont know the location of that column, in which table.since i got about >300 tables in database
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Query for TABLE_NAME from ALL_TAB_COLUMNS

    Comment

    • Vemuri
      New Member
      • Mar 2013
      • 1

      #3
      select table_name, column_name from all_tab_columns where column_name like 'X%'

      Place your column Name in the place of 'X'

      Comment

      Working...