Fix oracle datacache hit ratio mode

This commit is contained in:
garnier-quentin 2019-03-19 17:58:11 +01:00
parent 480e69ec30
commit 25e45af832
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ sub manage_selection {
my $query = q{
SELECT SUM(DECODE(name, 'physical reads', value, 0)),
SUM(DECODE(name, 'db block gets', value, 0)),
SUM(DECODE(name, 'consistent gets', value, 0)),
SUM(DECODE(name, 'consistent gets', value, 0))
FROM sys.v_$sysstat
};