Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #drop #index #oracle
ADD COMMENT
Topic
Name
6+1 =