04 2019 档案
摘要:https://www.askmaclean.com/archives/performance-tuning-oracle-awr.html
阅读全文
摘要:col BEGIN_INTERVAL_TIME for a25 \rcol END_INTERVAL_TIME for a25 \rcol instance_number for 99 \rset linesize 1000 pagesize 999 \rselect a.snap_id, a.sq
阅读全文
摘要:1、抓出外键没有创建索引的表(不依赖统计信息)with cons as (select /*+ materialize */ owner,table_name,constraint_name from dba_constraints where owner='SCOTT' and constrain
阅读全文
摘要:SELECT /*+ rule */ a .table_owner, a.table_name, a.index_owner, a.index_name, column_name_list, column_name_list_dup, dup duplicate_indexes, i.uniquen
阅读全文
摘要:史上最全近百条Oracle DBA日常维护SQL脚本指令 http://blog.itpub.net/30126024/viewspace-2057474/ 具体SQL如下 查询碎片程度高(实际使用率小于30%)的表 可以收缩的表条件为什么block>100,因为一些很小的表,只有几行数据实际大小很
阅读全文
摘要:select col.table_owner "table_owner", idx.table_name "table_name", col.index_owner "index_owner", idx.index_name "index_name", uniqueness "uniqueness"
阅读全文
摘要:一、查看字符集 SELECT USERENV('LANGUAGE') FROM DUAL; 二、 修改processes和sessions值(参考RAC测试库) show parameter processes show parameter sessions alter system set pro
阅读全文
摘要:[oracle@uudb1 ~]$ cd $ORACLE_HOME[oracle@uudb1 db_1]$ cd OPatch/[oracle@uudb1 OPatch]$ lscrs docs emdpatch.pl jlib ocm opatch opatch.bat opatchdiag op
阅读全文
摘要:SELECT d.tablespace_name "Name", TO_CHAR(NVL(a.bytes / 1024 / 1024, 0), '99,999,990.900') "Size (M)", TO_CHAR(NVL(t.hwm, 0) / 1024 / 1024, '99999999.9
阅读全文
摘要:启用 DDL 日志记录 功能--支持动态调整 alter system set enable_ddl_logging=true; alter system set enable_ddl_logging=true; 10:34:41 SYS@ewdb1(ewdb1)> show parameter e
阅读全文
摘要:SQL> @?/rdbms/admin/awrrpt.sql (可以去两个快照之间的awr报告) 注:AWR默认保留数据库7天的快照,每个小时产生一个快照 select * from dba_hist_wr_control 1、手工先在数据库中创建一个快照 SQL> execute dbms_wor
阅读全文
摘要:GGSCI (ewmdb1) 37> info all Program Status Group Lag at Chkpt Time Since Chkpt MANAGER RUNNING REPLICAT RUNNING REP_ICM 24:56:17 00:00:08 GGSCI (ewmdb
阅读全文
摘要:http://blog.itpub.net/29477587/viewspace-1331121/ 前段时间做了一次主备库的切换,大体写下操作步骤和记录,分享下。 环境: db version:11.2.0.3 主库:两节点的RAC 备库:两节点的RAC 是异地灾备,网络质量不太好。 步骤: 1.检
阅读全文
摘要:删除序列select 'drop sequence ' || sequence_owner || '.' || SEQUENCE_NAME || ';'from dba_sequenceswhere sequence_owner IN ('AMS', 'AIS') 序列当前值 select 'cre
阅读全文
摘要:SELECT SS.USERNAME, SS.SID, SS.SERIAL#, SS.MACHINE, SS.PROGRAM, SL.OPNAME, SL.TARGET, SL.START_TIME, ROUND(SL.SOFAR * 100 / SL.TOTALWORK, 0) || '%' AS
阅读全文