- Forum
- Databases
- Oracle how to collect information which sql are present in shared pool
-
Junior Member
how to collect information which sql are present in shared pool
hi all
i want to information or view, which gives the information about the which sql in shared pool and which sql is consume how much memory from the shared pool.
-
Expert Member
Re: how to collect information which sql are present in shared pool
select name, bytes/1024/1024 "MB"
from v$sgastat
where pool = 'shared pool'
order by bytes desc
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules