home *** CD-ROM | disk | FTP | other *** search
Wrap
/* Copyright (c) Oracle Corporation 1992. All Rights Reserved */ /***************************************************************************** NAME rdbms70.vrf - NetWare V3 installation verification script for the ORACLE version 7 rdbms. DESCRIPTION This script checks dependencies and environment settings for installation of the ORACLE version 7 rdbms product and prompts the user for the option of creating a seed database. OWNER Tony Rodgers MODIFIED DD-MMM-YY Reason Mpollak 12/03/92 - made change to MSGSZ psciarra 03-DEC-92 set install_seed_database to FALSE, default value. vokamura 22-NOV-92 update trodgers 01-APR-92 Created. trodgers 26-JUN-92 Modified for NetWare V7. *****************************************************************************/ { /***************************************************************************** Bind string constants ... *****************************************************************************/ /* Is RDBMS70 is already there and is it pointing to a valid directory? */ { rdbms70 = translate("RDBMS70","%SERVER%\SYS:SYSTEM\CONFIG.ORA"); if (not(exists(rdbms70))) signal('UNBOUND_ENVIRONMENT_VARIABLE); } [ 'UNBOUND_ENVIRONMENT_VARIABLE: rdbms70 = "%oracle_home%\RDBMS70"; 'READ_ERROR : rdbms70 = "%oracle_home%\RDBMS70"; ] /* Is PLSQL20 is already there and is it pointing to a valid directory? */ { plsql20 = translate("PLSQL20","%SERVER%\SYS:SYSTEM\CONFIG.ORA"); if (not(exists(plsql20))) signal('UNBOUND_ENVIRONMENT_VARIABLE); } [ 'UNBOUND_ENVIRONMENT_VARIABLE: plsql20 = "%oracle_home%\PLSQL20"; 'READ_ERROR : plsql20 = "%oracle_home%\PLSQL20"; ] product= nwrdbms70; product_label = product_interface_label(product); seed_prompt = nls("seed_prompt","Would you like to create a new ORACLE database in %RDBMS70%? This will destroy any existing ORACLE database already there."); seed_help = nls("seed_help","You may create a new database manually by following the instructions in the ORACLE RDBMS Database Administrator's Guide, or you can have the installer create one for you automatically by choosing 'YES'. It is recommended that you choose to automatically create a database now. You may enlarge this database at a later time if you wish."); seed_content = nls("seed_content","Seed Database"); install_seed_database = FALSE; dist_prompt1 = nls("dist_prompt1","Are you licensed to use the ORACLE7 Distributed Option on this system?"); dist_prompt2 = nls("dist_prompt2","Do you want to install the Distributed Option at this time?"); dist_help = nls("dist_help","You may install the ORACLE7 Distributed Option on this system only if you have purchased a separate license to do so."); dist_content = nls("dist_content","Distributed Option"); exit7_prompt = nls("exit7_prompt","Caution: Your file server may require certain patch modules from Novell to be loaded before the ORACLE7 Server NLMs, depending on the version of NetWare you are using. Failure to load these modules may cause the server to fail. These modules are provided for you and have been installed in the ORACLE home directory. Please review chapters 2 and 3 of the Installation and User's Guide for ORACLE7 Server for NetWare before attempting to load the ORACLE7 NLMs."); grp_msg = nls("grp_msg","Creating a NetWare Group called ORACLE_DBA..."); grp_name = "ORACLE_DBA"; reinstall_warning = nls("reinstall_warning","WARNING: It appears that you already have a database installed in %RDBMS70%. Are you SURE you want to overwrite your existing database?"); /***************************************************************************** Start processing ... *****************************************************************************/ ui_product(product_label); ui_action( nls("analyze_depend","Analyzing %product_label% Dependencies...") ); doit = true; mark { /***************************************************************************** Check if the product has already been installed ... *****************************************************************************/ if (registered(product_name(product))) { registry = registration(product_name(product)); current_version = product_version(product); installed_version = registry_version(registry); if (earlier_version(registry,current_version)) { doit = yesno_dialog(instantiate(reinstall_prompt01)); if (not(doit)) if (internally_called) information_dialog(instantiate(reinstall_prompt02)); } else if (not(internally_called)) if (later_version(registry,current_version)) doit = yesno_dialog(instantiate(reinstall_prompt03)); else doit = yesno_dialog(instantiate(reinstall_prompt04)); else doit = FALSE; } if (doit) { dist_response = "DSOFF"; if ( yesno_dialog(dist_prompt1,dist_content,dist_help) ) if ( yesno_dialog(dist_prompt2,dist_content,dist_help) ) dist_response = "DSON"; mark { install_seed_database = yesno_dialog(seed_prompt,seed_content, seed_help); mark { if (install_seed_database) { mark { if (exists("%rdbms70%\dbs1.ora")) { install_seed_database = yesno_dialog(reinstall_warning); if (install_seed_database) comment = nls("with_initial_db","With Initial Database"); else comment = nls("with_old_db","With Old Database"); } else comment = nls("with_initial_db","With Initial Database"); } } else comment = nls("without_initial_db","Without Initial Database"); } } } } /***************************************************************************** Return total size of files ... *****************************************************************************/ if (doit) { installing_scripts = nls("installing_scripts", "Installing %%product_label%% Scripts..."); installing_nlms = nls("installing_nlms", "Installing %%product_label%% NLMs..."); installing_patches = nls("installing_patches","Installing Novell Patches..."); installing_msbs = nls("installing_msbs", "Installing %%product_label%% Message Files..."); installing_ncf = nls("installing_ncf", "Installing %%product_label%% NCF Files..."); installing_sql = nls("installing_sql", "Installing %%product_label%% SQL Scripts..."); installing_plsql = nls("installing_plsql","Installing PL/SQL Files..."); installing_demo = nls("installing_demo", "Installing %%product_label%% Demonstration Files..."); installing_doc = nls("installing_doc", "Installing %%product_label%% Documentation Files..."); installing_seed = nls("installing_seed", "Installing Initial (Seed) Database..."); modifying_server_config = nls("modifying_server_config", "Modifying %%server%%/%%ora_config%%..."); modifying_init_ora = nls("modifying_init_ora", "Modifying %%RDBMS70%%\INIT.ORA"); registering = nls("registering","Registering %%product_label%%..."); if (install_seed_database) return( verify( nwutil70 ) + verify( nwspx11 ) + sum( deinstl, nlm, msg, nls_abbreviation, novpat, ncf, sql, plsql, demo, doc, seed, init ) ); else return( verify( nwutil70 ) + verify( nwspx11 ) + sum( deinstl, nlm, msg, nls_abbreviation, novpat, ncf, sql, plsql, demo, doc, init ) ); } else return(0); }