- 博客(143)
- 收藏
- 关注
转载 p1Text="name|mode"
ash里的p1 text则SELECT chr(bitand(1415053316 ,-16777216)/16777215)|| chr(bitand(1415053316 ,...
2012-06-05 09:41:17
366
转载 rebuild online 和drop partition update global indexes
rebuild online 需要双倍空间drop partition update global indexes ,是将索引条目删除,不需要双倍空间,也不会释放索引空间 ...
2011-10-26 15:48:41
585
转载 rac 重建undo
select segment_name,status,tablespace_name from dba_rollback_segs where status not in ('ONLINE','OFFLINE') and tab...
2011-02-17 20:14:17
237
转载 ORA-00600: internal error code, arguments: [kcbgcur_9], [335544649],
BEGIN dbms_logstdby.build; END;*ERROR at line 1:ORA-00600: internal error code, arguments: [kcbgcur_...
2011-02-17 20:10:10
164
转载 所有进程空闲时,logical dataguard 竟然延时
所有进程空闲时,逻辑库竟然延时select * from v$logstdby_process 2 ; SID SERIAL# LOGSTDBY_ID SPID T...
2011-02-10 14:11:01
101
转载 rac 一个节点log switch 引起其他节点log switch
今天凌晨的第3个节点日志切换,引起其他节点日志切换-rw-r----- 1 oracle oinstall 1066656256 Jan 27 04:49 Arc_3_47431_592235202.arc-rw-r---...
2011-01-27 13:46:42
158
转载 ORA-04031
What is an ORA-04031 Error?The memory pool in the SGA are comprised of memory chunks in various sizes. When the ...
2010-12-09 16:29:47
107
转载 shared pool 结构
The SGA is comprised of fixed areas like the Log Buffers and the Buffer Cache(s)as well asmemory pools (Shared P...
2010-12-09 16:27:59
145
转载 goldengate oracle to mysql配置
extract的mgr参数:PORT 7809DYNAMICPORTLIST 7840-7850添加提取进程:add extract exttmy,sourceistable exttmy参数:extract ex...
2010-12-07 13:36:21
63
转载 Bug 4369756 - Log apply may dump [krvsmso]
Sat Dec 4 04:05:58 2010Errors in file /u01/app/oracle/admin/xxaadb/bdump/xxaadb_p012_549.trc:ORA-07445: excep...
2010-12-06 16:26:38
213
转载 索引的row lock wait
一个session 无法产生索引的row lock waitInsert 也不会产生表的row lock wait,因为表块不会分裂在索引块分裂的同时往索引块里插入数据,会发生index的row lock wait比如...
2010-10-18 14:41:47
283
转载 索引块分裂
索引和表的itl 是完全不同的,如果表没有空闲空间创建itl并且itl使用完,则发生itl 等待。索引块如果没有空闲空间创建itl,会发生索引块分裂,将一个索引块分裂为2个,而不发生itl 等待。试验;1,创建...
2010-10-09 15:12:16
188
转载 cache buffer chains。trace文件
对lms进程做了个trace发现很多cache buffer chains latch waitWAIT #0: nam='latch: cache buffers chains' ela= 65 address=529...
2010-09-03 17:42:06
106
转载 读懂trc文件db file scattered read
WAIT #1: nam="db file scattered read" ela= 5 p1=4 p2=1435 p3=25 WAIT #1: nam="db file scattered rea...
2010-09-03 15:25:45
136
转载 rac进程evmd
The third component in OCS is called Event Management Logger. Event Management logger also runs as daemon process ...
2010-08-25 11:30:00
191
转载 rac进程 ocssd
Oracle Cluster Synchronization Services Daemon (ocssd) is the component, which provides the synchronization servic...
2010-08-25 11:27:02
206
转载 rac进程 crsd
crsdCRSd manages the resources like starting and stopping the services and failing-over the application resour...
2010-08-25 11:26:10
148
转载 锁与锁等待
当一个表被update,insert 或者delete 操作这个表被锁了,表的一个行,只能有一个tx锁。如果锁不释放,如果其他session也再update 该行,则发生锁等待,在oltp系统里,session 就得不到释放,容...
2010-08-05 09:34:21
139
转载 ITL与pctfree
某些生产系统ITL 的等待比较多。dba_tables 中INI_TRANS参数默认值为1,这个参数是不生效的,实际默认情况每个ini_trans为2就是每个块中默认有两个事物槽,如果该块有update或者delete等...
2010-07-28 09:50:32
144
转载 x$bh
select owner,object_name,object_type fromdba_objects where data_object_id in(select obj from x$bh where hlad...
2010-07-26 21:32:56
78
转载 调整sar 取样时间
编辑文件/etc/cron.d编辑sysstat[root@slave-report1 cron.d]# more sysstat# run system activity accounting tool every...
2010-07-15 15:46:54
228
转载 查看临时表空间使用情况
select (sum (blocks))*8/1000 "MB",sql_id from v$sort_usage group by sql_id;根据sql_id select sql_text from ...
2010-07-15 15:44:35
60
转载 通过trace文件判断锁的对象
数据库遇相关锁的报错DUMP LOCAL BLOCKER/HOLDER: block level 5 res [0x5120013][0x3cd2],[TX]----------resource 0x0xbc4c96528-...
2010-07-10 10:07:17
144
转载 不同路径创建dg注意问题
1,spfile 里的*.log_file_name_convert='+DATA/oradata/jiebin/','/u02/oradata/jiebin/'2 create standby controlfile as...
2010-07-01 20:51:46
155
转载 基于scn 增量
基于scn 的增量备份:rman 读当前系统数据块的scn ,假如当前系统的scn 大于或等于设定scn,则备份。关于基于scn 的增量,可以做from scn 即备份大于或等于设...
2010-06-30 11:30:51
111
转载 rman 基于scn 的增量
使用rman 基于scn 的增量可以恢复归档日志断点的physical dataguard步骤:1 在从库上查出当前从库的scn 号select current_scn from v$database;2 在主库...
2010-06-30 11:17:43
280
转载 oracle 查看隐含参数是否可以在线更改
v$parameter 视图可以查看参数是否可以动态更改(没有隐含参数)通过v$fixed_view_defination 查看v$parameter 的来源v$parameter 来自于GV$PA...
2010-06-09 23:31:21
160
转载 将dump文件xid转化为v$transaction xid
select to_number('000a','XXXXX') ,to_number('02d','XXXXX'),to_number('00000687','XXXXXXXXX') from dual;TO_NUMBER(...
2010-04-08 13:42:45
158
转载 mysql 升级
最近准备mysql的升级,老版本为5.126 属于非GA版本老板本是源码安装的,于是最新的GA版本5.145也准备使用源码安装。安装完成后,打开数据库,没有问题将mysql 5.145的数据库文件全部删除,将5.12...
2010-03-22 14:52:32
60
转载 使用flashback 同步logical dataguard数据库
我们在使用logical dataguard 时候,standby 机器容易出现问题我们经常采用insert into test1 select * from test1@db_link as of scn xxx;...
2010-01-11 10:17:46
96
转载 oracle 锁的研究二
从V$LOCK里面看到的lmode就是我们能从数据字典里,能看到的所有的锁类型一共有6种数字越大,锁的级别就越高0:none1:null 空2:Row-S 行共享(RS):共享表锁,sub share 3:Row-X...
2009-08-28 10:06:11
57
转载 oracle 锁的研究一
acle 的锁从种类上分为2种 共享锁(share) ,排它锁(exclusive).从锁定的内容上,可以分为三大类:dml锁,ddl锁,内存锁(latch)其中dml 锁包括TM锁和TX锁,其中TM锁称为表级锁,TX锁称为...
2009-08-27 14:44:08
67
转载 OCR integrity results are inconsistent amongst the nodes.
osLinux tsrac02 2.6.9-42.0.0.0.1.ELsmp #1 SMP Sun Oct 15 15:13:57 PDT 2006 x86_64 x86_64 x86_64 GNU/Linuxdb:...
2009-08-25 13:58:02
82
转载 CRS-0184: Cannot communicate with the CRS daemon.
问题描述:/oracle/crs/bin/crs_stat -t CRS-0184: Cannot communicate with the CRS daemon.方法/etc/init.d/init.c...
2009-08-24 17:17:00
132
转载 ges和gcs
GES and GCS have the memory structures associated with global resources. It is distributed across all instances in...
2009-07-29 21:25:33
185
转载 rac进程的学习1
LMS—Global Cache Service ProcessTo ensure that each Oracle RAC database instance obtains the block that it nee...
2009-07-29 19:41:56
62
转载 rac 资源分配问题
现在有个双节点的rac (rac1 ,rac2)没有设置parallel_instance_group 参数我在rac2节点上面,做任何操作,都会占用大量的rac1的cpurac2节点的资源占用却很少...
2009-07-20 11:39:45
212
转载 orainstRoot.sh
在安装rac过程中,安装ocr 和voting device的检查除了报内存不足,什么错误也没有可是在最后安装完成 要执行两个脚本1orainstRoot.sh2root.sh第一个脚本只提示我在node...
2008-09-04 12:59:33
83
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人