ora-00600: internal error code, arguments: [KGHLKREM1], [0x8

来源:这里教程网 时间:2026-02-27 12:54:28 作者:

昨天晚上凌晨12点接到监控短信(dataguard is down),于是登录系统查看原因,首先查看备库的alertlog文件,查看最近的半小时的l

/proc/sys/vm/drop_caches (since linux 2.6.16)
writing to this file causes the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free.

to free pagecache:

* echo 1 > /proc/sys/vm/drop_caches

to free dentries and inodes:

* echo 2 > /proc/sys/vm/drop_caches

to free pagecache, dentries and inodes:

* echo 3 > /proc/sys/vm/drop_caches

as this is a non-destructive operation, and dirty objects are not freeable, the user should run "sync" first in order to make sure all cached objects are freed.

相关推荐