oracle创建表时做分区吗,Oracle 创建表分区

在数据库性能需要保障的时候,我们可以使用Oracle进行分区操作.

一 表分区

1.范围分区 一般使用部门字段,地区字段,时间字段

SQL > CREATE TABLE USER

(user_id number(20) primary key,

user_name varchar2(100) not null,

regist_time varcahr(200) not null

)

partition by range(regist_time)

(

partition part_01 values less than(to_date('2003-01-01','yyyy-mm-dd') ) tablespace space_01,

partition part_02 values less than(to_date('2006-01-01','yyyy-mm-dd') ) tablespace space_02,

partition part_03 values less than(maxvalue) tablespace space_03

);

关键字:PARTITION BY RANGE(RANGE_COLUMN)

下面为按照注册日期为表分三个区,最后一个分区不指定日期值,均设定为MAXVALUE.

创建分区的同时为分区指定使用的表空间.

2.散列分区 一般使用编号字段

SQL > CREATE TABLE USER

(user_id number(20) primary key,

user_name varchar2(100) not null,

regist_time varcahr(200) not null

)

partition by hash(user_id)

(

partition part_01 tablespace space_01,

partition part_02 tablespace space_02,

partition part_03 tablespace space_03

)

DBA查看表分区

select * from dba_tab_partitions

USER查看表分区

select * from user_tab_partitions

DBA查看表分区类型

select * from dba_part_tables

USER查看表分区类型

select * from user_part_tables

查询分区表信息

select * from table partition(part_01)

DB2中:

--------------------------------------------------

-- Create Table GEMS_AI_D_AID001

--------------------------------------------------

Create table GEMS_AI_D_AID001 (

AC_DATE                        CHARACTER(8)                    ,

BR                             CHARACTER(6)                    ,

BR_NAME                        VARCHAR(60)                     ,

BK                             CHARACTER(6)                    ,

ITM                            CHARACTER(8)                    ,

ITM_NAME                       CHARACTER(240)                  ,

CCY                            CHARACTER(3)                    ,

RATE                           DECIMAL(12,8)                   ,

ITM_TYPE                       CHARACTER(1)                    ,

CBAL_F                         DECIMAL(18,2)                   )

tablespace TSPCAP4J01

Partitioning Key (AC_DATE) Using Hashing;

Comment on Table GEMS_AI_D_AID001 is '业务状况报告表(日报)';

转自:http://blog.csdn.net/ygjdatou/article/details/3224415

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值