- 博客(7)
- 收藏
- 关注
转载 减少sql硬、软解析
通过session_cached_cursors参数来减少软解析次数。 --装备测试的脚本1.sql.sqlset echo off;set feedback off;set termo...
2012-07-02 13:42:11 156
转载 oracle优化相关SQL语句集锦
当前系统存在的解析数: select a.name, value from v$sysstat a, v$statname bwhere a.STAT_ID = b.STAT_...
2012-07-02 11:04:10 73
转载 rman删掉过期文件
rman备份后物理删掉了备份的文件,会导致备份过期,必须使用rman命令删除:rman>crosscheck backup;执行备份的交叉检查。rman>delete expired backup;删除过期的备份...
2012-06-28 09:53:38 124
转载 sql where 1=1 0=1
where 1=1有什么用?在SQL语言中,写这么一句话就跟没写一样。 select * from table1 where 1=1与select * from table1完全没有区别,甚至还有其他许多写法,1<&...
2012-06-26 15:13:32 76
转载 转载:概要设计与详细设计
概要设计与详细设计的区别 概要设计就是设计软件的结构,包括组成模块,模块的层次结构,模块的调用关系,每个模块的功能等等。同时,还要设计该项目的应用系统的总体数据结构和数据库结构,即应用系统要存储什么数据,这些数据是什么样的...
2012-05-21 13:57:30 172
转载 hash join / nest loop join / sort merge join
hash join : 用在两个表数据量差别比较大的时候 nest loop join : 一般用在连接的表中有索引,并且索引选择性较好的时候merge join: 用在没有索引,而且数据已经排好序的时候H...
2012-03-06 10:42:52 117
转载 /*+ append */ ORA-12838错误
sql> create table t as select * from all_objects; sql> insert /*+ append */ into t select * from ...
2012-03-05 11:11:44 168
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人