Last active
June 2, 2016 12:47
-
-
Save jomoespe/1c4ade84ee608c5d2453c601de749ffb to your computer and use it in GitHub Desktop.
Query to find a table in Oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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