Operating System - HP-UX
1753444 Members
5249 Online
108794 Solutions
New Discussion

Re: ORA-600 with argument [kksscl-inf-inl-loop]

 
Eric Antunes
Honored Contributor

Re: ORA-600 with argument [kksscl-inf-inl-loop]

Sanjay,

Can you post here the result from the following query:

SELECT 'Shared Pool' area, name, sum(bytes)
FROM v$sgastat
WHERE pool = 'shared pool' and
name in ('library cache','dictionary cache','free memory','sql area')
group by name
union all
SELECT 'Shared Pool' area, 'miscellaneous', sum(bytes)
FROM v$sgastat
WHERE pool = 'shared pool' and
name not in ('library cache','dictionary cache','free memory','sql area')
group by pool
order by 3 desc;
Each and every day is a good day to learn.