Created
November 22, 2016 12:10
-
-
Save DEKHTIARJonathan/d362f785b113b3a689cb754aadad147d to your computer and use it in GitHub Desktop.
Delete if exists table in Oracle
This file contains 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
BEGIN | |
EXECUTE IMMEDIATE 'DROP TABLE table_name'; | |
EXCEPTION | |
WHEN OTHERS THEN NULL; | |
END; | |
/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment