-- Create table
create table RP_USER_T
(
ID NUMBER not null,
NAME VARCHAR2(10),
PASSWORD VARCHAR2(20),
AUTH NUMBER not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Add comments to the columns
comment on column RP_USER_T.AUTH
is '0-admin 1-recorder 2-checker 3-gather';
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_USER_T
add constraint ID_PK primary key (ID)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create table
create table RP_ACCOUNT_FEE_RECORD_T
(
ID VARCHAR2(20) not null,
CITY_CODE VARCHAR2(8),
PRODUCT_CODE VARCHAR2(10),
ACCOUNT_FEE_TYPE_CODE VARCHAR2(10),
ACCOUNT_RECORD_MONTH DATE,
ACCOUNT_FEE NUMBER(12,2),
ACCOUNT_OPERATOR VARCHAR2(30),
CHECK_STATUS VARCHAR2(1),
CHECK_PERSON VARCHAR2(30),
CHECK_TIME DATE
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_ACCOUNT_FEE_RECORD_T
add constraint ACCOUNT_FEE_ID_PK primary key (ID)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table RP_ACCOUNT_FEE_RECORD_T
add constraint ACCOUNT_FEE_CITY_CODE_FK foreign key (CITY_CODE)
references RP_CITY_CODE_T (CITY_CODE);
alter table RP_ACCOUNT_FEE_RECORD_T
add constraint ACCOUNT_FEE_PRODUCT_CODE_FK foreign key (PRODUCT_CODE)
references RP_PRODUCT_CODE_T (PRODUCT_CODE);
-- Create table
create table RP_ACCOUNT_TYPE_CODE_T
(
ACCOUNT_TYPE_CODE VARCHAR2(10) not null,
ACCOUNT_TYPE_NAME VARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_ACCOUNT_TYPE_CODE_T
add constraint ACCOUNT_TYPE_CODE_PK primary key (ACCOUNT_TYPE_CODE)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create table
create table RP_BALANCE_SP_CODE_T
(
BALANCE_SP_CODE VARCHAR2(10) not null,
BALANCE_SP_NAME VARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_BALANCE_SP_CODE_T
add constraint BALANCE_SP_CODE_PK primary key (BALANCE_SP_CODE)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create table
create table RP_BALANCE_TYPE_CODE_T
(
BALANCE_TYPE_CODE VARCHAR2(10) not null,
BALANCE_TYPE_NAME VARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_BALANCE_TYPE_CODE_T
add constraint BALANCE_TYPE_CODE_PK primary key (BALANCE_TYPE_CODE)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create table
create table RP_BUSINESS_FEE_RECORD_T
(
ID VARCHAR2(20) not null,
PRODUCT_CODE VARCHAR2(10),
CITY_CODE VARCHAR2(8),
BUSINESS_TYPE_CODE VARCHAR2(10),
BUSINESS_RECORD_DATE DATE,
BUSINESS_FEE NUMBER(12,2),
RECORD_OPERATOR VARCHAR2(30),
CHECK_PERSON VARCHAR2(30),
CHECK_TIME DATE,
CHECK_STATUS VARCHAR2(1)
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_BUSINESS_FEE_RECORD_T
add constraint BUSINESS_FEE_ID_PK primary key (ID)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table RP_BUSINESS_FEE_RECORD_T
add constraint BUSINESS_FEE_CITY_CODE_FK foreign key (CITY_CODE)
references RP_CITY_CODE_T (CITY_CODE);
alter table RP_BUSINESS_FEE_RECORD_T
add constraint BUSINESS_FEE_PRODUCT_CODE_FK foreign key (PRODUCT_CODE)
references RP_PRODUCT_CODE_T (PRODUCT_CODE);
alter table RP_BUSINESS_FEE_RECORD_T
add constraint BUS_FEE_BUSINESS_TYPE_CODE_FK foreign key (BUSINESS_TYPE_CODE)
references RP_BUSINESS_FEE_TYPE_CODE_T (BUSINESS_FEE_TYPE_CODE);
-- Create table
create table RP_BUSINESS_FEE_TYPE_CODE_T
(
BUSINESS_FEE_TYPE_CODE VARCHAR2(10) not null,
BUSINESS_FEE_TYPE_NAME VARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_BUSINESS_FEE_TYPE_CODE_T
add constraint BUSINESS_FEE_TYPE_CODE_PK primary key (BUSINESS_FEE_TYPE_CODE)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create table
create table RP_CARD_SALE_RECORD_T
(
ID VARCHAR2(20) not null,
CITY_CODE VARCHAR2(8),
PRODUCT_CODE VARCHAR2(10),
SALE_DATE DATE,
DISCOUNT_RATE NUMBER(5,2),
CARD_SALE_AMOUNT NUMBER(10),
CARD_PAR_VALUE_FEE NUMBER(12,2),
RECORD_OPERATOR VARCHAR2(30),
CHECK_STATUS VARCHAR2(2),
CHECK_PERSON VARCHAR2(30),
CHECK_TIME DATE,
TOTAL_FEE VARCHAR2(10),
DISCOUNT_FEE NUMBER(12,2)
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_CARD_SALE_RECORD_T
add constraint CARD_SALE_ID_PK primary key (ID)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table RP_CARD_SALE_RECORD_T
add constraint CARD_SALE_CITY_CODE_FK foreign key (CITY_CODE)
references RP_CITY_CODE_T (CITY_CODE);
alter table RP_CARD_SALE_RECORD_T
add constraint CARD_SALE_PRODUCT_CODE_FK foreign key (PRODUCT_CODE)
references RP_PRODUCT_CODE_T (PRODUCT_CODE);
-- Create table
create table RP_CITY_CODE_T
(
CITY_CODE VARCHAR2(6) not null,
CITY_NAME VARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table RP_CITY_CODE_T
add constraint CITY_CODE_PK primary key (CITY_CODE)
using index
tablespace USERS
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create table
create table RP_FEE_SOURCE_CODE_T
(
FEE_SOURCE_CODE VARCHAR2(10) not null,
FEE_SOURCE_NAME VARCHAR2(100) not null
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
)
没有合适的资源?快使用搜索试试~ 我知道了~
电信报表管理系统静态页面
共157个文件
gif:85个
html:64个
db:3个
3星 · 超过75%的资源 需积分: 10 53 下载量 155 浏览量
2011-05-19
10:03:24
上传
评论 1
收藏 1.08MB RAR 举报
温馨提示
var week; if(new Date().getDay()==0) week="星期日" if(new Date().getDay()==1) week="星期一" if(new Date().getDay()==2) week="星期二" if(new Date().getDay()==3) week="星期三" if(new Date().getDay()==4) week="星期四" if(new Date().getDay()==5) week="星期五" if(new Date().getDay()==6) week="星期六" document.write(new Date().getYear()+"年"+(new Date().getMonth()+1)+"月"+new Date().getDate()+"日 "+week);
资源推荐
资源详情
资源评论
收起资源包目录
电信报表管理系统静态页面 (157个子文件)
calendar.css 6KB
Thumbs.db 56KB
Thumbs.db 50KB
Thumbs.db 15KB
welcome.gif 341KB
welcome.gif 127KB
login_03.gif 31KB
login_08.gif 25KB
main_09.gif 10KB
login_05.gif 7KB
bt22.GIF 5KB
bt33.GIF 5KB
login_07.gif 5KB
bt2.GIF 5KB
bt3.GIF 5KB
bt44.GIF 4KB
bt4.GIF 4KB
bt11.GIF 4KB
bt1.GIF 4KB
main_30.gif 3KB
main_40.gif 3KB
main_32.gif 2KB
main_03.gif 2KB
main_04.gif 2KB
main_29.gif 2KB
main_22.gif 2KB
calsubmit.gif 2KB
main_47.gif 2KB
main_48.gif 2KB
login_06.gif 2KB
main_20.gif 1KB
main_18.gif 1KB
main_12.gif 1KB
main_11.gif 1KB
main_14.gif 1KB
main_16.gif 1KB
calclean.gif 1KB
caltomonth.gif 1KB
caltoday.gif 1KB
tab_17.gif 924B
main_58.gif 804B
tab_20.gif 770B
tab_07.gif 752B
back.gif 749B
next.gif 745B
last.gif 741B
go.gif 736B
first.gif 736B
tab_18.gif 715B
main_07.gif 701B
tab_03.gif 699B
main_37.gif 661B
main_05.gif 640B
right.gif 586B
tb.gif 585B
main_31.gif 552B
tab_19.gif 420B
dl.gif 377B
tab_05.gif 375B
calico_view.gif 371B
wrong.gif 365B
11.gif 341B
33.gif 337B
main_21.gif 317B
main_34.gif 292B
calbtn_bg.gif 287B
bg.gif 273B
22.gif 215B
main_36.gif 203B
main_55.gif 201B
main_55.gif 201B
main_55_1.gif 201B
main_55_1.gif 201B
calbottom_bg.gif 199B
edt.gif 197B
bg.gif 160B
caltop_bg.gif 154B
del.gif 145B
left.gif 124B
tab_15.gif 112B
tab_12.gif 111B
main_59.gif 93B
main_62.gif 92B
main_52.gif 79B
main_51.gif 77B
main_45.gif 52B
main_39.gif 52B
main_41.gif 52B
main_61.gif 37B
ka_xiao_record_tab_search.html 21KB
chu_zhang_record_tab_search.html 20KB
tong_zhi_record_tab_search.html 20KB
yu_cun_record_tab_search.html 20KB
left.html 19KB
wang_jian_record_tab_search.html 18KB
ka_xiao_check_tab_search.html 18KB
chu_zhang_check_tab_search.html 17KB
chu_zhang_gather_tab_search.html 17KB
wang_jian_check_tab_search.html 17KB
wang_jian_gather_tab_search.html 16KB
共 157 条
- 1
- 2
资源评论
- wanghongchang05042013-10-29做静态原型,还凑合吧!
- tinywang55752012-10-21还好吧,只是访问权限进行了设置
- linapursue2012-10-06还好吧,只是访问权限进行了设置
wwq00709
- 粉丝: 3
- 资源: 12
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功