home *** CD-ROM | disk | FTP | other *** search
Wrap
/* Copyright (c) Oracle Corporation 1992. All Rights Reserved */ /***************************************************************************** NAME rdbms70.dei - V3 de-installation script for NetWare ORACLE version 7 rdbms. DESCRIPTION This script removes the NetWare ORACLE version 7 rdbms files and un-registers the product. OWNER Tony Rodgers MODIFIED DD-MMM-YY Reason vokamura 19-NOV-92 update vokamura 24-JUL-92 Modified for NetWare installation trodgers 01-APR-92 Created. *****************************************************************************/ { unknown_rdbms70_prompt = instantiate( nls("unknown_rdbms70_prompt","It is not possible to remove %%product_label%% because of a problem with the RDBMS70 variable in your '%%ora_config%%' file.") ); unknown_rdbms70_content = nls("unknown_rdbms70_content","Configuration Problem"); unknown_rdbms70_help = instantiate( nls("unknown_rdbms70_help","In order to remove %%product_label%%, it is necessary to have a correct value for the RDBMS70 variable in your '%%ora_config%%' file. The RDBMS70 variable should point to the directory to which Oracle7 was installed.") ); { rdbms70 = translate("RDBMS70","%SERVER%\SYS:SYSTEM\CONFIG.ORA"); } [ 'UNBOUND_ENVIRONMENT_VARIABLE: information_dialog( unknown_rdbms70_prompt, unknown_rdbms70_content, unknown_rdbms70_help); ] unknown_plsql20_prompt = instantiate( nls("unknown_plsql20_prompt","It is not possible to remove %%product_label%% because of a problem with the PLSQL20 variable in your '%%ora_config%%' file.") ); unknown_plsql20_content = nls("unknown_plsql20_content","Configuration Problem"); unknown_plsql20_help = instantiate( nls("unknown_plsql20_help","In order to remove %%product_label%%, it is necessary to have a correct value for the PLSQL20 variable in your '%%ora_config%%' file. The PLSQL20 variable should point to the directory to which Oracle7 was installed.") ); { plsql20 = translate("PLSQL20","%SERVER%\SYS:SYSTEM\CONFIG.ORA"); } [ 'UNBOUND_ENVIRONMENT_VARIABLE: information_dialog( unknown_plsql20_prompt, unknown_plsql20_content, unknown_plsql20_help); ] /**************************************************************************** Bind all variables here... ****************************************************************************/ remove_prompt = instantiate( nls("remove_prompt","Do you wish to remove the database in %%RDBMS70%%?") ); remove_content = nls("remove_content","Remove Database"); remove_help = instantiate( nls("remove_help","If you would like to remove the database in datafile %%RDBMS70%%\dbs1.ora, choose 'YES'. If you would like to retain this database, choose 'NO' and the datafiles will not be removed.")); registry = registration("nwrdbms70"); registry_label = registry_interface_label(registry); unregistering = instantiate( nls("unregistering","Unregistering %%registry_label%%...") ); rem_database = nls("rem_database","Removing Database..."); deinst_doc = instantiate( nls("deinst_doc","Deinstalling %%registry_label%% Documentation files...") ); deinst_demo = instantiate( nls("deinst_demo","Deinstalling %%registry_label%% Demonstration files...") ); deinst_plsql = nls("deinst_plsql","Deinstalling PL/SQL Files..."); deinst_sql = instantiate( nls("deinst_sql","Deinstalling %%registry_label%% SQL Scripts...") ); deinst_ncf = instantiate( nls("deinst_ncf","Deinstalling %%registry_label%% NCF files...") ); deinst_msb = instantiate( nls("deinst_msb","Deinstalling %%registry_label%% Message Files...") ); deinst_patch = nls("deinst_patch","Deinstalling Novell patches..."); deinst_nlm = instantiate( nls("deinst_nlm","Deinstalling %%registry_label%% NLMs...") ); modifying_server_config = instantiate( nls("modifying_server_config", "Modifying %%server%%/%%ora_config%%...") ); deinst_script = instantiate( nls("deinst_script","Deinstalling %%registry_label%% Installation Scripts...") ); /**************************************************************************** Proceed with deinstallation ****************************************************************************/ ui_product(registry_label); doit = FALSE; if (unreferenced(registry)) doit = TRUE; else if (not(internally_called)) if (uniquely_self_referenced(registry)) doit = TRUE; else doit = yesno_dialog(instantiate(deinstall_prompt01)); if (doit) { if (exists("%server%\%rdbms70%\dbs1.ora")) remove_database = yesno_dialog(remove_prompt,remove_content,remove_help); else remove_database = FALSE; if (remove_database) { ui_action( rem_database ); remove(seed); remove(init); } ui_product(registry_label); ui_action( unregistering ); unregister(registry); ui_action( deinst_doc ); remove(doc); ui_action( deinst_demo ); remove(demo); ui_action( deinst_plsql ); remove(plsql); ui_action( deinst_sql ); remove(sql); ui_action( deinst_ncf ); remove(ncf); ui_action( deinst_msb ); remove(msg); ui_action( deinst_patch ); remove(novpat); ui_action( deinst_nlm ); remove(nlm); ui_action( modifying_server_config ); modify("PLSQL20","","%server%/%ora_config%","="); if (not(registered("netwareinstall")) && not(registered("nwutil70"))) { modify("RDBMS70","","%server%/%ora_config%","="); modify("DBA_AUTHORIZATION","","%server%/%ora_config%","="); } ui_action( deinst_script ); remove(deinstl); } }