Hello,
I'm getting the following error:
ORA-00604: error occurred at recursive SQL level 1
ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS1'
for the query (in a stored procedure of my local db):
insert /*+APPEND*/ into local_table
SELECT * from remote_table@remote_db_link
WHERE LOWER(aaa) = :bbbb;
COMMIT;
The error ORA-30036 is raised on the remote db?
Can i solve this "locally" or should I contact the remote_db administrator?
Thanks.
I'm getting the following error:
ORA-00604: error occurred at recursive SQL level 1
ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS1'
for the query (in a stored procedure of my local db):
insert /*+APPEND*/ into local_table
SELECT * from remote_table@remote_db_link
WHERE LOWER(aaa) = :bbbb;
COMMIT;
The error ORA-30036 is raised on the remote db?
Can i solve this "locally" or should I contact the remote_db administrator?
Thanks.