Skip to content

Instantly share code, notes, and snippets.

@andreia
Created April 9, 2012 18:53
Show Gist options
  • Select an option

  • Save andreia/2345465 to your computer and use it in GitHub Desktop.

Select an option

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