This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> SELECT PI.KSPPINM PARAMETER_NAME, PSV.KSPPSTVL INSTANCE_VALUE | |
| FROM X$KSPPI PI, X$KSPPCV PCV, X$KSPPSV PSV | |
| WHERE PI.INDX = PCV.INDX | |
| AND PI.INDX = PSV.INDX | |
| AND ( PI.KSPPINM = '_HIGH_PRIORITY_PROCESSES' | |
| OR PI.KSPPINM = '_HIGHEST_PRIORITY_PROCESSES'); --PARAMETER NAME | |
| PARAMETER_NAME INSTANCE_VALUE | |
| -------------- -------------- | |
| _highest_priority_processes VKTM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> SELECT SM.* | |
| FROM ALL_TABLES T, ALL_SDO_INDEX_METADATA SM | |
| WHERE T.TABLE_NAME LIKE 'MDRT%' AND T.TABLE_NAME = SM.SDO_INDEX_TABLE | |
| ORDER BY SDO_INDEX_OWNER; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> SELECT 'DROP TABLE ' || T.OWNER || '.' || '"' || T.TABLE_NAME || '" PURGE;' | |
| AS DROP_MDXTS_COMMAND | |
| FROM DBA_TABLES T | |
| WHERE T.TABLE_NAME LIKE 'MDXT%'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> SELECT * | |
| FROM DBA_SECONDARY_OBJECTS | |
| WHERE SECONDARY_OBJECT_NAME LIKE 'MDRT%'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> SELECT 'DROP TABLE ' || T.OWNER || '.' || '"' || T.TABLE_NAME || '" PURGE;' | |
| AS DROP_ORPHANED_MDRTS_COMMAND | |
| FROM DBA_TABLES T | |
| WHERE T.TABLE_NAME LIKE 'MDRT%' | |
| AND T.TABLE_NAME NOT IN (SELECT SM.SDO_INDEX_TABLE | |
| FROM ALL_SDO_INDEX_METADATA SM); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> ALTER INDEX OWNER.SDO_INDEX_NAME | |
| REBUILD PARAMETERS ('TABLESPACE=NEW_TBS'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [oracle@bltdb02 ~]$ last reboot | |
| reboot system boot 4.14.35-2047.506 Tue Feb 22 13:35 - 11:32 (1+21:56) | |
| reboot system boot 4.14.35-2047.506 Sat Feb 19 19:05 - 11:32 (4+16:27) | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [oracle@bltdb02 trace]$ ls -lsc /etc/oracle/lastgasp/ | |
| total 8 | |
| 4 -rwxr--r-- 1 root root 4096 Apr 8 2020 cssagent_bltdb02.lgl | |
| 4 -rwxr--r-- 1 root root 4096 Apr 8 2020 cssmonit_bltdb02.lgl | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [root@bltdb02 ~]# vi /var/log/messages | |
| ... | |
| Feb 22 13:25:15 bltdb02 systemd-logind: Removed session 1202. | |
| Feb 22 13:25:57 bltdb02 systemd-logind: New session 1203 of user oracle. | |
| Feb 22 13:25:57 bltdb02 systemd: Started Session 1203 of user oracle. | |
| Feb 22 13:25:57 bltdb02 systemd-logind: Removed session 1203. | |
| Feb 22 13:27:25 bltdb02 chronyd[2019]: Selected source 95.140.32.4 | |
| Feb 22 13:28:13 bltdb02 rtkit-daemon[1999]: The canary thread is apparently starving. Taking action. | |
| Feb 22 13:28:13 bltdb02 rtkit-daemon[1999]: Demoting known real-time threads. | |
| Feb 22 13:28:13 bltdb02 rtkit-daemon[1999]: Demoted 0 threads. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [oracle@bltdb02 trace]$ vi $ORACLE_BASE/diag/rdbms/clouddg/clouddg2/trace/alert_clouddg2.log | |
| ... | |
| 2022-02-22T13:28:11.385787+03:00 | |
| Warning: VKTM detected a forward time drift. | |
| 2022-02-22T13:28:12.528795+03:00 | |
| Please see the VKTM trace file for more details: | |
| /u01/app/oracle/diag/rdbms/clouddg/clouddg2/trace/clouddg2_vktm_7250.trc | |
| 2022-02-22T13:40:27.076354+03:00 | |
| Starting ORACLE instance (normal) (OS id: 24477) | |
| ... |
OlderNewer