伊人黄色网,综合激情网,国内精品久久久久影院优

a级一a一级在线观看_a级在线观看视频_a极毛片_a毛片_全部免费毛片在线播放_全部孕妇丰满孕妇孕交


      获得积分
      资料库会员登录
      搜索: [高级搜索]
      下载首页 | 资源分类 | 下载排行
      您的位置: 首页 > 市场 开发 实施 管理 > 数据库表结构
       
      分类导航
      下载排行
      最新资源
      中联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
      按字母检索

      下载须知:
      大部份资源无需注册即可下载
      需要积分的资源要在会员中心注册会员并用 积分体系中提示的方法赚取积分才能下载。

      免责声明:
      所有资源只能用于参考学习,不能用于任何商业用途,否则后果自负!
      主站蜘蛛池模板: 日韩欧美成人乱码一在线 | 黄色的网站免费 | 成人免费视频在线 | 欧美福利在线观看 | 福利入口在线观看 | 91国视频 | 国产91色在线 | 亚洲 | 毛片18| 国产成人美女福利在线观看 | 成人亚洲网站 | 日本免费在线播放 | 成年人在线免费网站 | 成年ssswww网站 | 成人毛片免费观看视频在线 | 国产成人片 | 精品免费国产一区二区三区 | www.成人在线| 青青视频免费在线 | 黄色片网站免费观看 | xxxxx 日本| 国产精品久久精品 | 国产成人免费在线 | 高清不卡日本v在线二区 | yellow网站在线观看 | 2020自拍偷区亚洲综合图片 | 91网址免费入口 | 欧美成人综合在线观看视频 | 日韩 视频在线播放 | 国产真实一区二区三区 | 激情视频网| 国产亚洲综合成人91精品 | 日本不卡免费一区 | 91长腿女神清纯大又嫩在线 | 巨乳在线观看 | 成人免费黄色片 | 91精品久久久久久久久久小网站 | 国产又色又爽的视频免费 | 欧美日韩国产动漫 | 日本夜爽爽一区二区三区 | 老司机午夜精品视频在线观看免费 | 国产精品爱久久久久久久三级 |