Hi,
My task is to determine, in bytes, the size of the Buffer Cache. My proposed solution is to multiply the values returned by the following two queries:
select value from v$parameter where name = 'db_block_size';
select value from v$parameter where name = 'db_block_buffers';
Am I on the right track? Thank you.
Eric
My task is to determine, in bytes, the size of the Buffer Cache. My proposed solution is to multiply the values returned by the following two queries:
select value from v$parameter where name = 'db_block_size';
select value from v$parameter where name = 'db_block_buffers';
Am I on the right track? Thank you.
Eric