Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create temporary table in stored procedure and access it in the same but I got error that ORA-00942:Table or view does not exists. Following is the procedure that i tried,

Create procedure myproc
  IS
  stmt varchar2(1000);
  BEGIN
  stmt:='CREATE GLOBAL TEMPORARY table temp(list if columns) ON COMMIT DELETE ROWS';

  execute immediate stmt;

  insert into temp values('list of column values');

 END;  

This is the way I used to create temporary table but I got error, is there any other way to perform this task?

share|improve this question
3  
@tbone's answer shows what you should be doing, but to explain what you're seeing: You can't do this because at the time the procedure is compiled temp doesn't exist yet. The compiler doesn't attempt to parse the dynamic SQL, not least because it has no idea if it will work at runtime. The only way this approach would work is if the insert was turned into dynamic SQL too; but this is not how temporary tables work in Oracle so don't do it like this. – Alex Poole Feb 16 '12 at 12:25
@Alex Poole:Thanks – eraj Feb 16 '12 at 13:03

1 Answer

up vote 7 down vote accepted

Just create it first (once, outside of your procedure), and then use it in your procedure. You don't want to (try to) create it on every call of the procedure.

create global temporary table tmp(x clob)
on commit delete rows;

create or replace procedure...
-- use tmp here
end;
share|improve this answer
But why? I found it strange. I.E. I need a "virtual" table. Can I create it inside the procedure itself? – Gik25 Oct 18 '12 at 10:47
@Gik25 whether you use an actual temp table or use other approaches depends on your specific situation. Maybe post a new question with your specifics, you'll most likely get some good responses. – tbone Oct 18 '12 at 11:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.