Skip to content

Instantly share code, notes, and snippets.

@andreia
Created April 9, 2012 18:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save andreia/2345465 to your computer and use it in GitHub Desktop.
Show all tables that have a specific column name (Oracle)
SELECT TABLE_NAME FROM USER_TAB_COLUMNS
WHERE COLUMN_NAME = 'ID'
@arianmaykon
Copy link

Maybe you can find some commands here https://gist.github.com/1104227 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment