摘要:
1.项目期间Oracle数据库长期运行,初期安装数据库时未进行定期清理规则设置,运维日常未进行数据库监听日志监控和定期清理,导致监听日志过大,根据DBA的运维经验,超过4G就有可能导致数据库服务不稳定或者出现数据库服务宕机情况(这一点尤其在windows环境尤为明显) 处理方案:将近期的监听日志留存 阅读全文
摘要:
Oracle 11g 版本支持 使用 wm_concat 函数select entity,wm_concat(RIGHT_TYPE) types from common_dataright_filed group by entity Oracle 12 不支持wm_concat 函数,使用 listagg(RIGHT_TYPE,',') within group (order by ent... 阅读全文
摘要:
1.EXPLAIN plan FOR select * ....语句 2.select * from table(dbms_xplan.display); 呈现结果: | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | | 0 | 阅读全文