
Oracle Enterprise Manager Cloud Control 13c Release 4 Certification Matrix on Linux

Oracle Enterprise Manager 12c,13c and more

How many times Corrective Action (CA) has been executed one year so far ?
SQL> select CA_NAME, count(*)
from sysman.MGMT$CA_EXECUTIONS
where START_TIME>=sysdate-365
group by CA_NAME order by 1
CA_NAME COUNT(*)
---------------------------------------- ----------
...
..
.
EXTEND_TABLESPACE_NORAC 3
EXTEND_TABLESPACE_PDB 16
EXTEND_TABLESPACE_RAC 70
NON-RAC_RMAN_AUTO_BACKUP_ARCHIVELOGS 56
RMAN_AUTO_BACKUP_ARCHIVELOGS 533
...
..
.
10 rows selected.
About view MGMT$CA_EXECUTIONS , Oracle official documentation is here or just click the following link.
Database manager asks you as a DBA about all the database size in the supported environment .
On 13.1 OMS repository:
SQL> select host_name,target_name, sum( FILE_SIZE/1024/1024/1024)
from mgmt$db_datafiles
group by host_name,target_name
order by host_name, target_name;
HOST_NAME TARGET_NAME SUM(FILE_SIZE/1024/1024/1024)
---------------------------------------- ---------------------------------------- -----------------------------
HOST1 DB1 38.65
HOST2 DB2 385.88
HOST3 DB3 27.52
...
..
.
OR we can use another another view mgmt$db_tablespaces :
SQL> select host_name,target_name,sum( TABLESPACE_SIZE/1024/1024/1024)
from mgmt$db_tablespaces
group by host_name,target_name
order by 1,2;
On OEM, when DBA trying to browse database performance or top activity page,
The following error occurs:
java.util.HashMap cannot be cast to oracle.sysman.emSDK.sec.targetauth.EMTargetConnectionPool
Checked named credential working fine against database target, and preferred credential has been setup against database target accordingly.
Read more of this content when you subscribe today.
One client OEM reports the following incidents intermittently from OEM 13c.
Host=racnode1.virtuallab
Target type=Automatic Storage Management
Target name=+ASM1_racnode1.virtuallab
Categories=Availability
Message=Failed to connect to ASM instance. The connection is closed: The connection is closed
Severity=Fatal
Event reported time=20/12/2020 09:19:01AM EST
Target Lifecycle Status=Test
Operating System=LINUX
Platform=X86_64
Associated Incident Id=12345
Associated Incident Status=New
Associated Incident Owner=oracle
Associated Incident Acknowledged By Owner=No
Associated Incident Priority=High
Associated Incident Escalation Level=0
Event Type=Target Availability
Event name=Status
Availability status=Down
Let’s do some investigations, and provide the easy workaround if patches are unavailable to some clients.
Read more of this content when you subscribe today.