12 2012 档案

摘要:说明:之前使用range分区做出来的效果不明显,这次使用hash分区。1、准备工作: ----创建两张一样的hash分区表,jacks_part和echos_part------------------ 1 SQL> create table jacks_part (owner varchar2(30),object_id number,object_name varchar2(128)) 2 2 partition by hash(object_id) 3 3 partitions 30; 4 5 Table created. 6 7 SQL> create table... 阅读全文
posted @ 2012-12-31 13:47 I’m Me! 阅读(4018) 评论(0) 推荐(1) 编辑
摘要:在重启RAC服务器以后,发现: 1 rac1->crs_stat -t 2 Name Type Target State Host 3 ------------------------------------------------------------ 4 ora.....CRM.cs application ONLINE UNKNOWN rac1 5 ora....db1.srv application ONLINE UNKNOWN rac1 6 ora... 阅读全文
posted @ 2012-12-28 09:40 I’m Me! 阅读(1193) 评论(0) 推荐(0) 编辑
摘要:一、实验说明: 操作系统:rhel 5.4 x86 数据库:Oracle 11g R2 实验说明:该实验参照了谭老师的《让Oracle跑的更快2》中的一个案例。二、在数据库中创建带加载数据的分区表及索引 ----------创建一个包含3个分区的分区表,分区的字段是一个时间字段,分别存放2011年、2012年和之后的数据。----- 1 SQL> create table jack_test(id int,name varchar2(60),created date) 2 2 partition by range(created) 3 3 ( 4 4 partition ... 阅读全文
posted @ 2012-12-25 15:47 I’m Me! 阅读(888) 评论(0) 推荐(0) 编辑
摘要:一、实验说明:操作系统:rhel 5.4 x86 数据库:Oracle 11g R2二、操作步骤: 2.1、首先创建一个表t_btree,并创建B-Tree索引,索引键是object_name:1 SQL> create table t_btree as select * from dba_objects;2 3 Table created.4 5 SQL> create index ind_btree on t_btree(object_name);6 7 Index created. 接着是执行下面的查询语句两次: 1 SQL> set linesize 150; 2 S 阅读全文
posted @ 2012-12-24 16:31 I’m Me! 阅读(519) 评论(0) 推荐(0) 编辑
摘要:一、实验说明: 操作系统:rhel 5.4 x86 数据库:Oracle 11g R2二、操作步骤: 首先创建一张t_btree表,并建立B-Tree索引,索引键是status:1 SQL> create table t_btree as select * from dba_objects;2 3 Table created.4 5 SQL> create index status_btree on t_btree(status);6 7 Index created. 执行两次下面的查询语句,并显示执行计划: 1 SQL> set autotrace traceonly; 2 阅读全文
posted @ 2012-12-24 15:14 I’m Me! 阅读(632) 评论(0) 推荐(0) 编辑
摘要:一、实验说明:操作系统:rhel 5.4 x86 数据库:Oracle 11g R2 实验说明:该实验是为了说明B-Tree索引性能优于BitMap索引的情况。二、实验操作: 首先创建一张t_btree表,并建立B-Tree索引,索引键是object_id:1 SQL> create table t_btree as select * from dba_objects;2 3 Table created.4 5 SQL> create index ind_tree on t_btree(object_id);6 7 Index created. 执行两次下面的查询语句,并显示执行计 阅读全文
posted @ 2012-12-24 14:07 I’m Me! 阅读(1176) 评论(0) 推荐(0) 编辑
摘要:一、实验说明: 操作系统:redhat 5.4 x86 数据库:oracle 11g R2 该实验通过建立一张规则表和一张不规则表,对这两张表分别使用全表扫描和索引访问,重点在于说明全表扫描的效率也可以优于索引访问。二、实验具体步骤: 2.1、创建一张规则表jack_test和一张不规则表echo_test。 1 SQL> create table jack_test(x int,y varchar2(2000)); --创建jack_test表 2 3 Table created. 4 5 SQL> begin 6 2 for i in 1..100000 7... 阅读全文
posted @ 2012-12-20 11:04 I’m Me! 阅读(741) 评论(0) 推荐(0) 编辑
摘要:一、实验说明 操作系统:redhat 5.4 数据库:oracle 11g r2二、在Noarchivelog模式中的比较: 1 SQL> conn jack/jack 2 Connected. 3 SQL> drop table t purge; 4 5 Table dropped. 6 7 SQL> conn /as sysdba 8 Connected. 9 SQL> archive log list;10 Database log mode No Archive Mode --Noarchivelog模式11 Automatic arc... 阅读全文
posted @ 2012-12-20 10:36 I’m Me! 阅读(2107) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示