Skip to Main Content

Oracle Database Discussions

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!

Slow performance in user shema, sys is fast

user10761119Jul 28 2014 — edited Jul 28 2014

I am running following block in the sys schema and one of my user schemas and there is considerable difference in execution times.

declare

l number;

begin

for i in 1..500000

loop

select 1 into l from dual;

end loop;

end;

In sys schema this completes in 14 seconds whereas in the use schema it takes 24 seconds. The resource manager plan is default maintenance plan.

Thanks!

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 25 2014
Added on Jul 28 2014
6 comments
808 views