Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3193055
  • 博文数量: 949
  • 博客积分: 10126
  • 博客等级: 上将
  • 技术积分: 12100
  • 用 户 组: 普通用户
  • 注册时间: 2006-06-16 10:57
文章分类

全部博文(949)

文章存档

2013年(1)

2012年(4)

2011年(4)

2010年(12)

2009年(342)

2008年(586)

分类: Oracle

2008-12-09 15:03:40

 

-- Create table
create table TJSDY
(
  JSDM CHAR(
3) not null,
  JSMC CHAR(
30) not null,
  JSLX CHAR(
1) not null,
  BY1  CHAR(
10) default '**********' not null,
  BY2  CHAR(
20) default '********************' not null,
  CDWZ CHAR(
1) default '2' not null,
  SJJS CHAR(
3) default '*' not null
)
tablespace YZ_BASIC
  pctfree
1
  pctused
40
  initrans
1
  maxtrans
255
  storage
  (
    initial
1M
    next 1M
    minextents 1
    maxextents unlimited
    pctincrease
0
  );
-- Create/Recreate indexes
create unique index TJSDY_UN1 on TJSDY (JSDM)
  tablespace YZ_BASIC_INX
  pctfree
1
  initrans
2
  maxtrans
255
  storage
  (
    initial
512K
    next
512K
    minextents
1
    maxextents unlimited
    pctincrease
0
  );

阅读(1444) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~