आप पीएल/एसक्यूएल ब्लॉक से डीडीएल स्टेटमेंट को सीधे निष्पादित नहीं कर सकते हैं - आपको इसके बजाय तत्काल तत्काल उपयोग करना होगा:
declare
i_cnt number;
begin
select count(1) into i_cnt
from dba_tables where table_name=upper('foo') and owner=upper('bar');
if i_cnt > 0 then
execute immediate 'drop table foo';
end if;
end;