GIMR Database Changes in Oracle Cluster
GIMR, or Grid Infrastructure Management Repository , was introduced in Oracle 12c. Oracle’s purpose in creating GIMR was to record cluster-related events and incidents. More precisely, GIMR is intended to store Cluster Health Monitor data inside its database. This database contains around 20 tables, which can be listed using the following commands: [grid @RAC1 ~ ]$ export ORACLE_SID = - MGMTDB [grid @RAC1 ~ ]$ sqlplus "/as sysdba" SQL > alter session set container = GIMR_DSCREP_10; Session altered. SQL > select table_name from dba_tables where owner = 'CHM' order by table_name; TABLE_NAME -------------------------------------------------------------------------------- CATCHMUTILPLS_PARTITION_TMP_TBL CHMOS_ACTIVE_CONFIG_INT_TBL CHMOS_ADVM_INT_TBL … 16 rows selected. For example, using the CHMOS_SYSTEM_SAMPLE_INT_TBL table, you can obtain information about disk I/O: select to_char ( begintime, 'YYYY/MM/DD HH24:mi:ss' , 'NLS_CA...