首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

写下到blob字段的存储过程

2013-03-12 
写入到blob字段的存储过程-- Create tablecreate table JFORUM_POSTS_TEXT(POST_IDNUMBER(18) not null,PO

写入到blob字段的存储过程

-- Create tablecreate table JFORUM_POSTS_TEXT(  POST_ID      NUMBER(18) not null,  POST_TEXT    BLOB,  POST_SUBJECT VARCHAR2(200),  ISDELETED    NUMBER(1) default 0)tablespace XZFY  pctfree 10  initrans 1  maxtrans 255  storage  (    initial 128    minextents 1    maxextents unlimited  );-- Create/Recreate primary, unique and foreign key constraints alter table JFORUM_POSTS_TEXT  add primary key (POST_ID)  using index   tablespace XZFY  pctfree 10  initrans 2  maxtrans 255  storage  (    initial 64K    minextents 1    maxextents unlimited  );


热点排行