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

-- script: 18_win_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_win_920_prepinstall_1.pl script
-- Copyright 2002 by .com Solutions Inc.
--
-- ---------------------- Revision History ---------------
-- Date By Changes
-- 08-18-2002 dsimpson Initial Release for Oracle 9.2.0
-- This output file was created by Installgen version 1.38 on Thu Nov 14 17:48:05 2002. By .com Solutions Inc. www.dotcomsolutionsinc.net
connect / as SYSDBA
set echo on
spool c:\v901\assistants\dbca\logs\JServer.log
@c:\v901\javavm\install\initjvm.sql;
@c:\v901\xdk\admin\initxml.sql;
@c:\v901\xdk\admin\xmlja.sql;
@c:\v901\javavm\install\catjava.sql;;
spool off
-- ordinst.sql is always run after the main JServer scripts are run
set echo on
spool c:\v901\assistants\dbca\logs\ordinst.log
@c:\v901\ord\admin\ordinst.sql;
spool off
exit;
-- build XDB feature - after JServer is built
connect / as SYSDBA
set echo on
spool c:\v901\assistants\dbca\logs\xdb_protocol.log
@c:\v901\rdbms\admin\catqm.sql systempwd xdb TEMP;
connect / as SYSDBA
@c:\v901\rdbms\admin\catxdbj.sql;
spool off
exit;

