1. 同一数据库不同实例之间的关系
2. oracle联合主键创建索引问题
http://bbs.csdn.net/topics/390404096
http://www.cnblogs.com/askjacklin/archive/2012/07/22/2603925.html
http://blog.csdn.net/graemes/article/details/6192185
http://blog.csdn.net/nisjlvhudy/article/details/7971577
5. oracle开机自启动
6. oracle备份与恢复
7. oracle静默安装
8.oracle字符集问题
http://www.eygle.com/archives/2004/09/nls_character_set_01.html
http://blog.csdn.net/wzy0623/article/details/1683337
http://blog.sina.com.cn/s/blog_95c27c530101ap58.html
http://bbs.51cto.com/thread-1017691-1.html
11. 建立生产数据库需要的注意事项
http://www.itpub.net/thread-1841143-1-1.html
http://yx.hahale.com.cn/info.php?id=514194
12. 表的字段取值范围
13. 主键与外键
14.Oracle vpd
使用Oracle VPD(Virtual Private Database)实现数据库层面数据权限
15.数据库的性能调优
何時需索引?
1、The column is used frequently in the where clause or join condition.
2、The column contains a wide range of values.
3、The column contains a large number of null values.
4、Two or more culumn are frequently used together in a where clause or join condition.
5、The table is large and most queries are expected to retrieve less than 2-4% of the rows.
何時不需索引?
1、The table is small.
2、The columns are not often used as a condition in the query.
3、Most queries are expected to retrieve more than 2-4% of the rows.
4、The table is updated frequently.
Note:若where條件包含is not null即使建立index依然會造成Full table scan。
执行表分析
对表按照主键重新排序(相似主键放在同一个数据块中,减少IO)
16 oracle监控脚本
8个DBA最常用的监控Oracle数据库的常用shell脚本
Oracle数据库管理常用的监控脚本------极大的简化运维工作
百度查询关键字:oracle sql语句怎样看是否使用索引
oracle的SQL语句的执行步骤 为什么有时不使用索引的答案