摘要:
查询历史连接主机信息 select distinct a.machine,a.program,a.module from dba_hist_active_sess_history a where a.SAMPLE_TIME BETWEEN TO_DATE('2019-06-04 12:00:00', 阅读全文
摘要:
--现象: 修改 SGA 参数 没有修改 sga_max_size 导致数据库启动失败; SQL>alter system set sga_target=270G scope=spfile; 启动数据库报错 ERROR at line 1:ORA-01565: error in identifyin 阅读全文
摘要:
1、抓出外键没有创建索引的表(不依赖统计信息)with cons as (select /*+ materialize */ owner,table_name,constraint_name from dba_constraints where owner='SCOTT' and constrain 阅读全文