-- DROP TABLE
declare
object_exists exception;
pragma exception_init (object_exists , -00942);
begin
execute immediate '...';
exception when object_exists then null;
end;