文章列表
当一个做了好多年的Java程序员面对一个只有一两年经验的面试官,囧。
当被一个一个的简单的问题问倒时,那是一个什么滋味。
是否我们真的有理由忘掉那些知识?是否我们真的应该痛批一下那些坐在面试官的位置小年轻?也曾经面过很多资深程序员,越发的同情他们。
不过现实生活中就是这样的,如果没有很好的知识积累和整理,随着时间的推移,无情的记忆就会将一下很简单的东西抹去。需要好好的沉淀。。。
但是为什么我们会被一两年工作经验的面试官碰上?难道我得价值跌入了与他们一起竞争的地步?
或者是不是这样的公司就不该去,去了也是这样的一个等级?
需要冥想。。。
Oracle database Performance Tuning FAQ
From Oracle FAQ
Jump to: navigation, search
General Oracle database Performance Tuning FAQ. Remember: The best performance comes from the unnecessary work you don't do.
Contents [hide]
1 Why and when should one tune?
2 Where should the tuning effort be ...
--to check the pending sessions.
select * from v$session s, v$sqlstats t where s.STATUS = 'ACTIVE' and s.SQL_ID = t.SQL_ID and s.MACHINE='';
--to check 2 phase committed pending sessions.
select * from dba_2pc_pending;
-- for checking the sql run time cost
select t.SQL_FULLTEXT, t.SQL_TEXT, t.EXEC ...