Last active
August 29, 2015 14:00
-
-
Save kimwalisch/11284073 to your computer and use it in GitHub Desktop.
oracle_sql_commands
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
| -- Seach column name in database | |
| select table_name from all_tab_columns where column_name like '%COLUMN_NAME%'; | |
| -- Seach table name in database | |
| select table_name from all_tables where table_name like '%TABLE_NAME%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment