⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sys_custgroup_cust.pdc

📁 用C#开发的一套数据仓库的代码。(C#+ORACLE)
💻 PDC
字号:
-- Create table
create table SYS_CUSTGROUP_CUST
(
  CUSTGROUPCUST_KEY NUMBER(20) not null,
  CUSTGROUP_ID      NUMBER(10) not null,
  COMPANY_ID        NUMBER(20) not null,
  CUSTOMER_ID       NUMBER(30) not null,
  ISVALID           VARCHAR2(1),
  UPDATEDATE        DATE,
  UPDATEBYUSER_CODE VARCHAR2(20)
)
tablespace SYSINFO
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );
-- Create/Recreate primary, unique and foreign key constraints 
alter table SYS_CUSTGROUP_CUST
  add primary key (CUSTGROUPCUST_KEY)
  using index 
  tablespace SYSINFO
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -