摘要:
DECLARE CURSOR STALE_TABLE IS SELECT OWNER, SEGMENT_NAME, CASE WHEN SIZE_GB = 0.5 AND SIZE_GB = 1 AND SIZE_GB = 5 ... 阅读全文
摘要:
为什么Oracle要避免大事务呢?1.高并发2.回滚慢3. 从UNDO读数据也是单块读SQL> desc a1 Name Null? Type ----------------------------------------- -------- -----------------... 阅读全文
摘要:
SQL> select t3.program,t2.sid,t2.ID1,t2.ctime from (select sid, type, id1, id2, lmode, request, ctime from v$lock where ... 阅读全文
摘要:
SESSION 1:SQL> select * from v$mystat where rownum select * from a1; ID FLAG1 FLAG2---------- ---------- ---------- 1 a a1 1 b b1SQ... 阅读全文
摘要:
需求:把10.5.128.190数据同步到10.5.128.27用客服端-服务器模式,需要从客户端发起 也就是从10.5.128.27发起10.5.128.27 作为客户端10.5.128.190 作为服务端1. 服务端取得rsync程序文件,一般放到/usr/binftp中转机 rsync目录有2... 阅读全文
摘要:
$ pwd/oracle/sqldr$ ls -ltrtotal 0-rw-r--r-- 1 oracle dba 93 Jan 21 15:08 cnaps2_dn.add-rw-r--r-- 1 oracle dba 4263 Jan 21 15:08 cnaps_pkg_info.add-rw... 阅读全文
摘要:
SQL> create table test(object_id NUMBER,object_name varchar2(10));Table created.SQL> begin 2 for i in 1 .. 1000000 3 loop 4 insert into test val... 阅读全文
摘要:
SQL> drop table test purge;Table dropped.SQL> create table test as select * from dba_objects;Table created.SQL> select a.column_name, b.num_rows... 阅读全文
摘要:
绑定变量窥视cbo的一个附属功能,关闭他不会影响是用cbo还是rbo,就算关闭了绑定变量窥视,cbo还是会利用别的统计信息(num_distinct,density等)来评估cost和cardinality,只是无法使用直方图信息而已:SQL> SELECT x.ksppinm NAME, y.ks... 阅读全文
摘要:
SQL> create table test(id int,name char(10));Table created.SQL> begin 2 for i in 1 .. 10000 3 loop 4 insert into test values(i,'a'||i); 5 end ... 阅读全文