Q: why does Find database objects cause an option to commit?

Claus Pedersen

Member³
Q: see above.

I have a view that uses a synonym (table on another instance accessed through a database link). When I perform a database search and include views, the buttons for commit/rollback are enabled.

Why? Is this reported by Oracle and if so, why?
 
PL/SQL Developer will only commit when all records are fetched. If it would commit before that, fetching subsequent records would lead to "ORA-01002: fetch out of sequence".
 
Back
Top