中聯lis數據庫結構

中文字幕精品无码一区二区-黄色伊人-久久精品无码av-男女插插插视频-日韩bbw-永久影院-三级av免费-美国av导航-99成人在线观看-美腿丝袜一区-激情欧美在线观看

  • <li id="yk2cl"></li>
  • <tbody id="yk2cl"><sup id="yk2cl"><del id="yk2cl"></del></sup></tbody>

      <center id="yk2cl"></center>
      <delect id="yk2cl"></delect>
    1.  
      
      獲得積分
      資料庫會員登錄
      搜索: [高級搜索]
      下載首頁 | 資源分類 | 下載排行
      您的位置: 首頁 > 市場 開發 實施 管理 > 數據庫表結構
       
      分類導航
      下載排行
      最新資源
      中聯lis數據庫結構
      資源大小:59.58 KB 資源類型:文檔
      下載積分: 20
      更多
      -->
      下載統計:總下載:0,本月下載:0,本周下載:0,今日下載:0
      發表評論 錯誤報告 加入收藏夾
      資源介紹
      -----------------------------------------
      -- Export file for user ZHLIS           --
      -- Created by du on 2011-3-24, 11:57:35 --
      ------------------------------------------

      spool 112.log

      prompt
      prompt Creating table AMUS
      prompt ===================
      prompt
      create table ZHLIS.AMUS
      (
        AMUS NUMBER(10) not null,
        NAME VARCHAR2(30) not null,
        ISGR NUMBER(5),
        ADMN NUMBER(5),
        PARN NUMBER(10),
        PSWD VARCHAR2(30),
        LNAM VARCHAR2(80),
        LABL VARCHAR2(254),
        LCKD NUMBER(5),
        CDAT DATE,
        MDAT DATE
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create index ZHLIS.AMUS_NAME on ZHLIS.AMUS (NAME)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create unique index ZHLIS.AMUS_PK on ZHLIS.AMUS (AMUS)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );

      prompt
      prompt Creating table BLBJ
      prompt ===================
      prompt
      create table ZHLIS.BLBJ
      (
        BLBJ NUMBER(10) not null,
        BTYP NUMBER(5) not null,
        MODL NUMBER(10),
        TLEN NUMBER(10),
        SLEN NUMBER(10),
        NSEG NUMBER(10)
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create index ZHLIS.BLBJ_MODL on ZHLIS.BLBJ (MODL)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create unique index ZHLIS.BLBJ_PK on ZHLIS.BLBJ (BLBJ)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );

      prompt
      prompt Creating table BRSH
      prompt ===================
      prompt
      create table ZHLIS.BRSH
      (
        BRSH NUMBER(10) not null,
        MODL NUMBER(10),
        BCLR NUMBER(10),
        BSTY NUMBER(10),
        BHAT NUMBER(10)
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create index ZHLIS.BRSH_MODL on ZHLIS.BRSH (MODL, BCLR)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create unique index ZHLIS.BRSH_PK on ZHLIS.BRSH (BRSH)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );

      prompt
      prompt Creating table CNST
      prompt ===================
      prompt
      create table ZHLIS.CNST
      (
        MODL NUMBER(10) not null,
        CNST NUMBER(10) not null,
        NAME VARCHAR2(80) not null,
        DTTP VARCHAR2(30),
        CTGR VARCHAR2(4),
        RSRV NUMBER(5),
        VALE VARCHAR2(254),
        CDAT DATE,
        CUSR NUMBER(10),
        MDAT DATE,
        MUSR NUMBER(10)
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create index ZHLIS.CNST_NAME on ZHLIS.CNST (MODL, NAME)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create unique index ZHLIS.CNST_PK on ZHLIS.CNST (CNST)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );

      prompt
      prompt Creating table DICTDRUG
      prompt =======================
      prompt
      create table ZHLIS.DICTDRUG
      (
        MARK  VARCHAR2(1),
        FLAG  VARCHAR2(1),
        CODE  VARCHAR2(8),
        DRGNM VARCHAR2(30),
        NCCD  VARCHAR2(8)
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 400K
          minextents 1
          maxextents unlimited
        );

      prompt
      prompt Creating table DOCT
      prompt ===================
      prompt
      create table ZHLIS.DOCT
      (
        DOCORD VARCHAR2(10) not null,
        DOCT   VARCHAR2(10) not null
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );

      prompt
      prompt Creating table DWMCSRC
      prompt ======================
      prompt
      create table ZHLIS.DWMCSRC
      (
        CSRC NUMBER(10) not null,
        TSRC NUMBER(10),
        COLN NUMBER(10),
        CALS VARCHAR2(80),
        CEXP NUMBER(10),
        INVL NUMBER(5)
      )
      tablespace TS_JYK
        pctfree 10
        pctused 40
        initrans 1
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create index ZHLIS.DWCSRCOL on ZHLIS.DWMCSRC (COLN)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create unique index ZHLIS.DWCSRPK on ZHLIS.DWMCSRC (CSRC)
        tablespace TS_JYK
        pctfree 10
        initrans 2
        maxtrans 255
        storage
        (
          initial 16K
          minextents 1
          maxextents unlimited
        );
      create index ZHLIS.DWCSRTSR on ZHLIS.DWMCSRC (TSRC)
      下載地址
       下載地址1
      按字母檢索

      下載須知:
      大部份資源無需注冊即可下載
      需要積分的資源要在會員中心注冊會員并用 積分體系中提示的方法賺取積分才能下載。

      免責聲明:
      所有資源只能用于參考學習,不能用于任何商業用途,否則后果自負!
      主站蜘蛛池模板: 安龙县| 铁力市| 横峰县| 八宿县| 嘉鱼县| 象州县| 碌曲县| 诸城市| 当阳市| 得荣县| 科技| 常宁市| 富蕴县| 湖北省| 眉山市| 沙洋县| 岢岚县| 秭归县| 平谷区| 秭归县| 左云县| 绵阳市| 周宁县| 根河市| 襄汾县| 额尔古纳市| 乌拉特中旗| 江达县| 芒康县| 大悟县| 遂川县| 奉节县| 罗山县| 平谷区| 墨竹工卡县| 乌什县| 浦城县| 军事| 平顶山市| 三江| 新乐市|