摘要: 1. How does the invalid object come?The Oracle database will invalidate objects if a dependent object is changed. If I rebuild a table, the indexes on... 阅读全文
posted @ 2014-07-30 22:37 princessd8251 阅读(998) 评论(0) 推荐(0) 编辑
摘要: 十进制与十六进制的转换十进制-->十六进制select to_char(100,'XX') from dual;十六进制-->十进制select to_number('7D','XX') from dual; 阅读全文
posted @ 2014-07-30 21:27 princessd8251 阅读(320) 评论(0) 推荐(0) 编辑
摘要: Example to show the dead lock caused by lack of index on foreign key of child table.Session 1:create table p ( x int primary key );create table c ( x ... 阅读全文
posted @ 2014-07-30 20:36 princessd8251 阅读(808) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/liqfyiyi/article/details/7727641http://www.askmaclean.com/archives/category/oracle/lockhttp://database.51cto.com/art/201004/19729... 阅读全文
posted @ 2014-07-30 20:16 princessd8251 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 1. enable traceDBCC TRACEON (trace# [ ,...n ][ , -1 ] ) [ WITH NO_INFOMSGS ]trace# Is the number of the trace flag to turn on.n Is a placeholder that... 阅读全文
posted @ 2014-07-30 15:43 princessd8251 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 转自http://blog.csdn.net/biti_rainy/article/details/35188热点块的定义 数据库的热点块,从简单了讲,就是极短的时间内对少量数据块进行了过于频繁的访问。定义看起来总是很简单的,但实际在数据库中,我们要去观察或者确定热点块的问题,却不是那么简单了。要深... 阅读全文
posted @ 2014-07-30 00:44 princessd8251 阅读(1106) 评论(0) 推荐(0) 编辑