Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ora-25153 -> temporary-tablespace-is-empty-error-in-oracle/

ManjitAug 27 2007 — edited Aug 28 2007
I get this error after I run my stored procedure.Surprisingly I expec this kind of error before one record could be inserted into any table in the DB.


In my stored procedure ,

a) I first insert a record in a table and then do a insert

select count(*) into l_count from emp;
--this record is inserted.
insert into employee values(lcount);
commit;


b) do more insert inside a loop

loop
--error happens inside the loop
insert into salary values ....

end loop


c) commit outside the loop


The error happens somewhere inside the loop.

Shouldnt I have got the error in the first insert itself ?

Thanks
m
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 25 2007
Added on Aug 27 2007
13 comments
1,022 views