home *** CD-ROM | disk | FTP | other *** search
Wrap
/* Copyright (c) Oracle Corporation 1992. All Rights Reserved */ /***************************************************************************** NAME util70.dei - V3 de-installation script for NetWare ORACLE version 7 utils. DESCRIPTION This script removes the NetWare ORACLE version 7 utils and un-registers the product. OWNER Tony Rodgers MODIFIED DD-MMM-YY Reason kschrait 02/26/93 - 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); ] /**************************************************************************** Bind all variables here... ****************************************************************************/ registry = registration("nwutil70"); registry_label = registry_interface_label(registry); unregistering = instantiate( nls("unregistering","Unregistering %%registry_label%%...") ); deinst_demo = instantiate( nls("deinst_demo","Deinstalling %%registry_label%% Demonstration files...") ); deinst_res = instantiate( nls("deinst_res","Deinstalling %%registry_label%% Resource Files...") ); deinst_msb = instantiate( nls("deinst_msb","Deinstalling %%registry_label%% Message Files...") ); 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) { ui_product(registry_label); ui_action( unregistering ); unregister(registry); ui_action( deinst_demo ); remove(demo); ui_action( deinst_res ); remove(res); ui_action( deinst_msb ); remove(msg); ui_action( deinst_nlm ); remove(nlm); ui_action( modifying_server_config ); modify("API","","%server%/%ora_config%","="); modify("UTILITY_MSG","","%server%/%ora_config%","="); if (not(registered("netwareinstall")) && not(registered("nwrdbms70"))) { modify("RDBMS70","","%server%/%ora_config%","="); modify("DBA_AUTHORIZATION","","%server%/%ora_config%","="); } ui_action( deinst_script ); remove(deinstl); } }