Skip to content

Instantly share code, notes, and snippets.

@jomoespe
Last active June 2, 2016 12:47
Show Gist options
  • Save jomoespe/1c4ade84ee608c5d2453c601de749ffb to your computer and use it in GitHub Desktop.
Save jomoespe/1c4ade84ee608c5d2453c601de749ffb to your computer and use it in GitHub Desktop.
Query to find a table in Oracle
SELECT owner, table_name
FROM dba_tables
WHERE table_name like '%'
ORDER BY table_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment