2012年7月31日

index status unusable

摘要: 这个错误是由于索引失效造成的,重建索引后,问题就解决了。为了搞清楚索引为什么会失效,以及如何解决,我们做个测试:首先我们创建一个普通的测试表(非分区表):SQL> create table t(a number);Table created.SQL> select tablespace_name from user_segments where segment_name='T';TABLESPACE_NAME------------------------------DATA_DYNAMICSQL> 然后,我们创建一个普通索引SQL> create in 阅读全文

posted @ 2012-07-31 13:57 green0818 阅读(563) 评论(0) 推荐(0) 编辑

创建分区表

摘要: CREATE TABLE test(A NUMBER,B NUMBER,TESTDATE DATE)partition by range (testdate)( partition part_01 values less than(to_date('2005-10-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) tablespace testmin,partition part_02 values less than(to_date('2006-01-01 00:00:00','yyyy-mm-dd hh24 阅读全文

posted @ 2012-07-31 13:55 green0818 阅读(134) 评论(0) 推荐(0) 编辑

tablespace

摘要: 查看TABLESPACE使用select a.tablespace_name,a.bytes/1024/1024 "Sum MB",(a.bytes-b.bytes)/1024/1024 "used MB",b.bytes/1024/1024 "free MB",round(((a.bytes-b.bytes)/a.bytes)*100,2) "percent_used" from (select tablespace_name,sum(bytes) bytes from dba_data_files group 阅读全文

posted @ 2012-07-31 13:51 green0818 阅读(294) 评论(0) 推荐(0) 编辑

导航