तत्काल निष्पादित करें का उपयोग करके नीचे का प्रयास करें:यदि तालिका पहले से मौजूद है तो यह बायपास करने के लिए अपवाद हैंडलर का उपयोग करता है; यह भी ध्यान दें कि आप PLSQL के अंदर SQL चयन का उपयोग नहीं कर सकते हैं
DECLARE
l_column1 number;
begin
begin
execute immediate 'create global temporary table my_temp_table(column1 number)
on commit preserve rows';
exception when others
then
dbms_output.put_line(sqlerrm);
end;
insert into my_temp_table (column1) values (1);
select * into l_column1 from my_temp_table where column1=1;
dbms_output.put_line('the temp value is '||l_column1);
end;