oracle - Create temporary TABLE inside a FUNCTION -
oracle - Create temporary TABLE inside a FUNCTION -
this question has reply here:
how create , utilize temporary table in oracle stored procedure? 4 answershow can create temporary table can homecoming when function called?
see one:
create or replace procedure maketemptab sqlstmt varchar2(500); begin sqlstmt := 'create global temporary table(col1 varchar2(10))'; execute immediate sqlstmt; end;
oracle function plsql temp-tables
Comments
Post a Comment