重庆思庄Oracle、Redhat认证学习论坛

标题: oracle 11g 分区之六:引用分区 [打印本页]

作者: 郑全    时间: 2018-9-7 17:34
标题: oracle 11g 分区之六:引用分区
字表直接使用主表的分区
  主表 customers 表的创建如下所示:

  create table customers  
  (  
   cust_id   number primary key,  
   cust_name varchar2(200),  
   rating    varchar2(1) not null  
  )  
  partition by list (rating)  
  (  
   partition pA values ('A'),  
   partition pB values ('B')  
  );  

  sales表的创建如下所示。它是customers表的一个子表。
  create table sales  
  (  
   sales_id    number primary key,  
   cust_id     number not null,  
   sales_amt   number,  
   constraint  fk_sales_01  
    foreign key (cust_id)  
    references customers  
  )
partition by reference (fk_sales_01);  







欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2