add container tablespace
This commit is contained in:
parent
a7e8fc34aa
commit
4928914de0
|
@ -122,7 +122,7 @@ sub new {
|
||||||
'free' => { name => 'free' },
|
'free' => { name => 'free' },
|
||||||
'skip' => { name => 'skip' },
|
'skip' => { name => 'skip' },
|
||||||
'notemp' => { name => 'notemp' },
|
'notemp' => { name => 'notemp' },
|
||||||
'container' => { name => 'container' },
|
'add-container' => { name => 'add_container' },
|
||||||
});
|
});
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
|
@ -137,133 +137,131 @@ sub prefix_tablespace_output {
|
||||||
sub manage_container {
|
sub manage_container {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
return if (!defined($self->{option_results}->{container}));
|
return if (!defined($self->{option_results}->{add_container}));
|
||||||
|
|
||||||
# request from check_oracle_health.
|
# request from check_oracle_health.
|
||||||
my $query;
|
return if (!$self->{sql}->is_version_minimum(version => '9'));
|
||||||
if ($self->{sql}->is_version_minimum(version => '9')) {
|
|
||||||
my $tbs_sql_undo = q{
|
|
||||||
-- freier platz durch expired extents
|
|
||||||
-- speziell fuer undo tablespaces
|
|
||||||
-- => bytes_expired
|
|
||||||
SELECT
|
|
||||||
tablespace_name, bytes_expired, con_id
|
|
||||||
FROM
|
|
||||||
(
|
|
||||||
SELECT
|
|
||||||
tablespace_name,
|
|
||||||
SUM (bytes) bytes_expired,
|
|
||||||
status,
|
|
||||||
con_id
|
|
||||||
FROM
|
|
||||||
cdb_undo_extents
|
|
||||||
GROUP BY
|
|
||||||
con_id, tablespace_name, status
|
|
||||||
)
|
|
||||||
WHERE
|
|
||||||
status = 'EXPIRED'
|
|
||||||
};
|
|
||||||
my $tbs_sql_undo_empty = q{
|
|
||||||
SELECT NULL AS tablespace_name, NULL AS bytes_expired, NULL AS con_id FROM DUAL
|
|
||||||
};
|
|
||||||
my $tbs_sql_temp = q{
|
|
||||||
UNION ALL
|
|
||||||
SELECT
|
|
||||||
e.name||'_'||b.tablespace_name "Tablespace",
|
|
||||||
b.status "Status",
|
|
||||||
b.contents "Type",
|
|
||||||
b.extent_management "Extent Mgmt",
|
|
||||||
sum(a.bytes_free + a.bytes_used) bytes, -- allocated
|
|
||||||
SUM(DECODE(d.autoextensible, 'YES', d.maxbytes, 'NO', d.bytes)) bytes_max,
|
|
||||||
SUM(a.bytes_free + a.bytes_used - NVL(c.bytes_used, 0)) bytes_free
|
|
||||||
FROM
|
|
||||||
sys.v_$TEMP_SPACE_HEADER a, -- has con_id
|
|
||||||
sys.cdb_tablespaces b, -- has con_id
|
|
||||||
sys.v_$Temp_extent_pool c,
|
|
||||||
cdb_temp_files d, -- has con_id
|
|
||||||
v$containers e
|
|
||||||
WHERE
|
|
||||||
a.file_id = c.file_id(+)
|
|
||||||
AND a.file_id = d.file_id
|
|
||||||
AND a.tablespace_name = c.tablespace_name(+)
|
|
||||||
AND a.tablespace_name = d.tablespace_name
|
|
||||||
AND a.tablespace_name = b.tablespace_name
|
|
||||||
AND a.con_id = c.con_id(+)
|
|
||||||
AND a.con_id = d.con_id
|
|
||||||
AND a.con_id = b.con_id
|
|
||||||
AND a.con_id = e.con_id
|
|
||||||
GROUP BY
|
|
||||||
e.name,
|
|
||||||
b.con_id,
|
|
||||||
b.status,
|
|
||||||
b.contents,
|
|
||||||
b.extent_management,
|
|
||||||
b.tablespace_name
|
|
||||||
ORDER BY
|
|
||||||
1
|
|
||||||
};
|
|
||||||
|
|
||||||
$query = sprintf(
|
my $tbs_sql_undo = q{
|
||||||
q{
|
-- freier platz durch expired extents
|
||||||
SELECT /*+ opt_param('optimizer_adaptive_features','false') */
|
-- speziell fuer undo tablespaces
|
||||||
e.name||'_'||a.tablespace_name "Tablespace",
|
-- => bytes_expired
|
||||||
b.status "Status",
|
SELECT
|
||||||
b.contents "Type",
|
tablespace_name, bytes_expired, con_id
|
||||||
b.extent_management "Extent Mgmt",
|
FROM
|
||||||
a.bytes bytes,
|
(
|
||||||
a.maxbytes bytes_max,
|
SELECT
|
||||||
c.bytes_free + NVL(d.bytes_expired,0) bytes_free
|
tablespace_name,
|
||||||
|
SUM (bytes) bytes_expired,
|
||||||
|
status,
|
||||||
|
con_id
|
||||||
FROM
|
FROM
|
||||||
(
|
cdb_undo_extents
|
||||||
-- belegter und maximal verfuegbarer platz pro datafile
|
GROUP BY
|
||||||
-- nach tablespacenamen zusammengefasst
|
con_id, tablespace_name, status
|
||||||
-- => bytes
|
)
|
||||||
-- => maxbytes
|
WHERE
|
||||||
SELECT
|
status = 'EXPIRED'
|
||||||
a.con_id,
|
};
|
||||||
a.tablespace_name,
|
my $tbs_sql_undo_empty = q{
|
||||||
SUM(a.bytes) bytes,
|
SELECT NULL AS tablespace_name, NULL AS bytes_expired, NULL AS con_id FROM DUAL
|
||||||
SUM(DECODE(a.autoextensible, 'YES', a.maxbytes, 'NO', a.bytes)) maxbytes
|
};
|
||||||
FROM
|
my $tbs_sql_temp = q{
|
||||||
cdb_data_files a
|
UNION ALL
|
||||||
GROUP BY
|
SELECT
|
||||||
con_id, tablespace_name
|
e.name||'_'||b.tablespace_name "Tablespace",
|
||||||
) a,
|
b.status "Status",
|
||||||
sys.cdb_tablespaces b,
|
b.contents "Type",
|
||||||
(
|
b.extent_management "Extent Mgmt",
|
||||||
-- freier platz pro tablespace
|
sum(a.bytes_free + a.bytes_used) bytes, -- allocated
|
||||||
-- => bytes_free
|
SUM(DECODE(d.autoextensible, 'YES', d.maxbytes, 'NO', d.bytes)) bytes_max,
|
||||||
SELECT
|
SUM(a.bytes_free + a.bytes_used - NVL(c.bytes_used, 0)) bytes_free
|
||||||
a.con_id,
|
FROM
|
||||||
a.tablespace_name,
|
sys.v_$TEMP_SPACE_HEADER a, -- has con_id
|
||||||
SUM(a.bytes) bytes_free
|
sys.cdb_tablespaces b, -- has con_id
|
||||||
FROM
|
sys.v_$Temp_extent_pool c,
|
||||||
cdb_free_space a
|
cdb_temp_files d, -- has con_id
|
||||||
GROUP BY
|
v$containers e
|
||||||
con_id, tablespace_name
|
WHERE
|
||||||
) c,
|
a.file_id = c.file_id(+)
|
||||||
(
|
AND a.file_id = d.file_id
|
||||||
%s
|
AND a.tablespace_name = c.tablespace_name(+)
|
||||||
) d,
|
AND a.tablespace_name = d.tablespace_name
|
||||||
v$containers e
|
AND a.tablespace_name = b.tablespace_name
|
||||||
WHERE
|
AND a.con_id = c.con_id(+)
|
||||||
a.tablespace_name = c.tablespace_name (+)
|
AND a.con_id = d.con_id
|
||||||
AND a.tablespace_name = b.tablespace_name
|
AND a.con_id = b.con_id
|
||||||
AND a.tablespace_name = d.tablespace_name (+)
|
AND a.con_id = e.con_id
|
||||||
AND a.con_id = c.con_id(+)
|
GROUP BY
|
||||||
AND a.con_id = b.con_id
|
e.name,
|
||||||
AND a.con_id = d.con_id(+)
|
b.con_id,
|
||||||
AND a.con_id = e.con_id
|
b.status,
|
||||||
%s
|
b.contents,
|
||||||
|
b.extent_management,
|
||||||
|
b.tablespace_name
|
||||||
|
ORDER BY
|
||||||
|
1
|
||||||
|
};
|
||||||
|
|
||||||
|
my $query = sprintf(
|
||||||
|
q{
|
||||||
|
SELECT /*+ opt_param('optimizer_adaptive_features','false') */
|
||||||
|
e.name||'_'||a.tablespace_name "Tablespace",
|
||||||
|
b.status "Status",
|
||||||
|
b.contents "Type",
|
||||||
|
b.extent_management "Extent Mgmt",
|
||||||
|
a.bytes bytes,
|
||||||
|
a.maxbytes bytes_max,
|
||||||
|
c.bytes_free + NVL(d.bytes_expired,0) bytes_free
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
-- belegter und maximal verfuegbarer platz pro datafile
|
||||||
|
-- nach tablespacenamen zusammengefasst
|
||||||
|
-- => bytes
|
||||||
|
-- => maxbytes
|
||||||
|
SELECT
|
||||||
|
a.con_id,
|
||||||
|
a.tablespace_name,
|
||||||
|
SUM(a.bytes) bytes,
|
||||||
|
SUM(DECODE(a.autoextensible, 'YES', a.maxbytes, 'NO', a.bytes)) maxbytes
|
||||||
|
FROM
|
||||||
|
cdb_data_files a
|
||||||
|
GROUP BY
|
||||||
|
con_id, tablespace_name
|
||||||
|
) a,
|
||||||
|
sys.cdb_tablespaces b,
|
||||||
|
(
|
||||||
|
-- freier platz pro tablespace
|
||||||
|
-- => bytes_free
|
||||||
|
SELECT
|
||||||
|
a.con_id,
|
||||||
|
a.tablespace_name,
|
||||||
|
SUM(a.bytes) bytes_free
|
||||||
|
FROM
|
||||||
|
cdb_free_space a
|
||||||
|
GROUP BY
|
||||||
|
con_id, tablespace_name
|
||||||
|
) c,
|
||||||
|
(
|
||||||
%s
|
%s
|
||||||
},
|
) d,
|
||||||
defined($self->{option_results}->{notemp}) ? $tbs_sql_undo_empty : $tbs_sql_undo,
|
v$containers e
|
||||||
defined($self->{option_results}->{notemp}) ? "AND (b.contents != 'TEMPORARY' AND b.contents != 'UNDO')" : '',
|
WHERE
|
||||||
defined($self->{option_results}->{notemp}) ? "" : $tbs_sql_temp
|
a.tablespace_name = c.tablespace_name (+)
|
||||||
);
|
AND a.tablespace_name = b.tablespace_name
|
||||||
} else {
|
AND a.tablespace_name = d.tablespace_name (+)
|
||||||
return ;
|
AND a.con_id = c.con_id(+)
|
||||||
}
|
AND a.con_id = b.con_id
|
||||||
|
AND a.con_id = d.con_id(+)
|
||||||
|
AND a.con_id = e.con_id
|
||||||
|
%s
|
||||||
|
%s
|
||||||
|
},
|
||||||
|
defined($self->{option_results}->{notemp}) ? $tbs_sql_undo_empty : $tbs_sql_undo,
|
||||||
|
defined($self->{option_results}->{notemp}) ? "AND (b.contents != 'TEMPORARY' AND b.contents != 'UNDO')" : '',
|
||||||
|
defined($self->{option_results}->{notemp}) ? "" : $tbs_sql_temp
|
||||||
|
);
|
||||||
|
|
||||||
$self->{sql}->query(query => $query);
|
$self->{sql}->query(query => $query);
|
||||||
my $result = $self->{sql}->fetchall_arrayref();
|
my $result = $self->{sql}->fetchall_arrayref();
|
||||||
|
|
||||||
|
@ -633,7 +631,7 @@ Perfdata show free space
|
||||||
|
|
||||||
skip temporary or undo tablespaces.
|
skip temporary or undo tablespaces.
|
||||||
|
|
||||||
=item B<--container>
|
=item B<--add-container>
|
||||||
|
|
||||||
Add tablespaces of container databases.
|
Add tablespaces of container databases.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue