
Installgen
Features and Benefits
Installgen
Demo Available for download...
Bookmark This Page

-- script: 18_sol_920_build_jserver_1.sql
-- Features: This sql script adds the JServer feature to the Oracle database.
-- Note: For Oracle 9.2.0 databases, the XDB feature is added after JServer is built.
--
-- Script Sequence#: 18
-- Used By: 3_sol_920_prepinstall_1.sh script
-- Copyright 2002 by .com Solutions Inc.
--
-- ---------------------- Revision History ---------------
-- Date By Changes
-- 09-30-2002 dsimpson Initial Release for Oracle 9.2.0
-- This output file was created by Installgen version 1.38 on Sun Nov 10 14:20:50 2002. By .com Solutions Inc. www.dotcomsolutionsinc.net
connect / as SYSDBA
set echo on
spool /u01/v901/assistants/dbca/logs/JServer.log
@/u01/v901/javavm/install/initjvm.sql;
@/u01/v901/xdk/admin/initxml.sql;
@/u01/v901/xdk/admin/xmlja.sql;
@/u01/v901/javavm/install/catjava.sql;;
spool off
-- ordinst.sql is always run after the main JServer scripts are run
set echo on
spool /u01/v901/assistants/dbca/logs/ordinst.log
@/u01/v901/ord/admin/ordinst.sql;
spool off
exit;
-- build XDB feature - after JServer is built
connect / as SYSDBA
set echo on
spool /u01/v901/assistants/dbca/logs/xdb_protocol.log
@/u01/v901/rdbms/admin/catqm.sql Wt_47i xdb TEMP;
connect / as SYSDBA
@/u01/v901/rdbms/admin/catxdbj.sql;
spool off
exit;

