?? sys_sysparameter.pdc
字號:
-- Create table
create table SYS_SYSPARAMETER
(
PARAMETER_ID NUMBER(10),
PARAMETER_CODE VARCHAR2(20) not null,
PARAMETERDESC VARCHAR2(200),
PARAMETERVALUE NUMBER(10),
ISVALID VARCHAR2(1)
)
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_SYSPARAMETER
add constraint SYS_SYSPARAMATER primary key (PARAMETER_CODE)
using index
tablespace SYSINFO
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
alter table SYS_SYSPARAMETER
add unique (PARAMETER_ID)
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 + -