ITPUB个人空间 »
toke_night的个人空间
欢迎访问 toke_night 的个人空间
我的论坛主题
-
2008-01-22 14:53:39 / Oracle数据库管理
比如我在数据库的日志文件上发现了一个ORA-600 .. [1234]的错误,在metalink上查找到可能是22222的bug我怎样才能确认一定就是这个bug????
查看(308)
评论(5)
-
2008-01-21 16:14:05 / Oracle数据库管理
freelist的等待会造成死锁吗??
查看(384)
评论(8)
-
2008-01-21 00:13:27 / Oracle数据库管理
大家觉得有没有必要打cpu patch??还有打cpu patch有风险吗?
查看(481)
评论(8)
-
2008-01-15 22:16:40 / Oracle数据库管理
大家有遇到过查询v$sqlarea时间很长,无法等待,大家都怎么处理的?
查看(355)
评论(7)
-
2008-01-15 22:15:11 / Oracle数据库管理
请问:如果一个表空间的大小是100M,实际使用了50M,那么alter tablespace name resize datafile '...' 75M.回影响这个表空间的数据和相关约束和索引吗?
查看(687)
评论(6)
-
2008-01-11 11:10:24 / Oracle数据库管理
V$LOCK和V$LOCK_OBJECT的关系和区别:v$locked_object视图列出当前系统中哪些对象正被锁定.v$lock视图列出当前系统持有的或正在申请的所有锁的情况.\\首先用 2条sql语句update同一行数据,模拟TX mode=6的锁Session 1:SQL>update e set e=1 where e=1;Sql completeSession 2:SQL> update e set e=1 where e=1;发生等待Session 3:SQL>CONNECT / as sysdba\\查询所有的tx和tm所,update语句主要产生这2个锁SQL>select * from v$lock where TYPE=’TX’ or TYPE=’TM;ADDRKADDRSID TY
查看(563)
评论(8)
-
2008-01-09 14:17:07 / Oracle数据库管理
谁能帮我说说undo tablespace的optsizeshrinkswrapsextend这些概念,找了半天也没有合适的资料,,,,,,,.哪个高手来说说.
查看(231)
评论(2)
-
2008-01-08 22:01:00 / Oracle数据库管理
问一下buffer gets/execution是什么意思?为什么说这个值很大的话,数据库里会有低效的sql语句
查看(251)
评论(7)
-
2008-01-08 16:22:54 / Oracle数据库管理
A wait for the TX enqueue in mode 6 (P1= 1415053318, P1RAW= 54580006) is the most common enqueue wait. (In Oracle Database 10g, the wait event name is enq: TX—row lock contention.) This indicates contention for row-level lock. This wait occurs when a transaction tries to update or delete rows that are currently locked by another transaction. This usually is an application issue. The waiting session will wait until the blocking session commits or rolls back its transaction. There is no other
查看(403)
评论(1)