Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

BEGIN/END e CREATE Table em um único arquivo .sql


você esqueceu de colocar na sua declaração 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 melhor se você usar declare também na primeira linha, antes de começar começa