/* ================================================================================ 档案代号:vlx_file 档案名称: 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table vlx_file ( vlx01 varchar2(20) DEFAULT '' NOT NULL, /*资料库名称/sid*/ vlx02 varchar2(20), /*资料库ip位址 */ vlx03 varchar2(10), /*资料库登入帐号 */ vlx04 varchar2(10), /*资料库密码 */ vlx05 varchar2(1), /*是否为主要资料库 */ vlx06 varchar2(1) /*资料库来源 */ ); grant select on vlx_file to public; grant index on vlx_file to public; grant update on vlx_file to public; grant delete on vlx_file to public; grant insert on vlx_file to public; |