I'm getting this error in Oracle:
ORA-00933: SQL command not properly ended
for
DROP SEQUENCE IF EXISTS ownername.seq_name;
Why am I seeing this?
|
feedback
|
|
the You could use a PLSQL block to ignore the error:
| |||||
feedback
|
|
As others mentioned, the IF EXISTS doesn't work on the DROP SEQUENCE command. To test for the existence of a sequence, you need to check the appropriate view:
Example:
| |||||||
feedback
|
|
The problem is "if exists" does not work in Oracle. Use:
| |||
|
feedback
|
|
Try this:
| |||
|
feedback
|