Answers for "oracle table drop index"

SQL
2

oracle sql drop index

DROP INDEX index_name;
Posted by: Guest on February-24-2021
5

drop index oracle

DECLARE
   index_not_exists EXCEPTION;
   PRAGMA EXCEPTION_INIT (index_not_exists, -1418);
BEGIN
   EXECUTE IMMEDIATE 'DROP INDEX index_name';
EXCEPTION
   WHEN index_not_exists THEN NULL;
END;
Posted by: Guest on May-31-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language