create table J2EE_CONFIG (
	CID number(19) primary key,
	PARENTCID number(19),
	PATHPREFIX nvarchar2(127),
	CPATH nvarchar2(300),	
	PATHHASH number(10),
	CACHEMODE number(10),
	CTYPE number(10),
	LINKEDCPATH nvarchar2(300)
);
create unique index J2EE_CONFIG_I0 on J2EE_CONFIG(CPATH);
create index J2EE_CONFIG_I1 on J2EE_CONFIG(PATHPREFIX);
create index J2EE_CONFIG_I2 on J2EE_CONFIG(PATHHASH);
create index J2EE_CONFIG_I3 on J2EE_CONFIG(PARENTCID);
create index J2EE_CONFIG_I4 on J2EE_CONFIG(CTYPE);
create table J2EE_CONFIGENTRY(
	CID number(19),
	NAMEHASH number(10),
	ISFILE number(5),
	NAME nvarchar2(256),
	DTYPE number(19),
	VBIGINT number(19),
	VDOUBLE float,
	VSTR nvarchar2(2000),
	VBYTES raw(2000),
	FBLOB blob
);
create index J2EE_CFGENTRY_I0 on J2EE_CONFIGENTRY(CID, NAMEHASH, ISFILE);
create table J2EE_KEYSEQUENCE (
	SEQUENCE_ID number(10) primary key,
	INC_VALUE number(19)
);