Oracle
 sql >> Database >  >> RDS >> Oracle

BEGIN/END e CREATE Table in un unico file .sql

hai dimenticato di inserire la tua dichiarazione if..

BEGIN     
     EXECUTE IMMEDIATE 'DROP TABLE symbols'; 
EXCEPTION     
  WHEN OTHERS THEN         
   IF SQLCODE != -942 THEN     
 --here you have to write something for this exception
 -- if you don't have any activity to do then you can use NULL (atleast)
 -- you can't put this if statement body empty in oracle
 NULL;
END IF; 
END; 
/ 

e meglio se usi declare anche alla prima riga, prima di iniziare inizia