home *** CD-ROM | disk | FTP | other *** search
Wrap
/* Copyright (c) Oracle Corporation 1992. All Rights Reserved */ /***************************************************************************** NAME rsf70.dei - DOS V3 de-installation script for ORACLE Required Support Files. DESCRIPTION This script removes the DOS ORACLE RSF files and un-registers the product. OWNER Tony Rodgers MODIFIED DD-MMM-YY Reason ekabatch 23-MAR-92 Copied from OS/2. trodgers 16-APR-92 Copied from CDROM for V7. *****************************************************************************/ { registry = registration("dosrsf70"); registry_label = registry_interface_label(registry); ui_product(registry_label); /***************************************************************************** Bind nls deinstallation strings here... *****************************************************************************/ unknown_rdbms70_prompt = 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 = 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."); unknown_pro15_prompt = nls("unknown_pro15_prompt","It is not possible to remove %%product_label%% because of a problem with the PRO15 variable in your '%%ora_config%%' file."); unknown_pro15_content = nls("unknown_pro15_content","Configuration Problem"); unknown_pro15_help = nls("unknown_pro15_help","In order to remove %%product_label%%, it is necessary to have a correct value for the PRO15 variable in your '%%ora_config%%' file. The PRO15 variable should point to the directory to which the precompilers were installed."); unregistering = nls("unregistering","Unregistering %%registry_label%%..."); deinst_sql = nls("deinst_sql","Deinstalling %%registry_label%% SQL Scripts..."); deinst_msb = nls("deinst_msb","Deinstalling %%registry_label%% Message Files..."); modify_config = instantiate( nls("modify_config","Modifying %%ora_config%%...") ); deinst_script = nls("deinst_script","Deinstalling %%registry_label%% Installation Scripts..."); /***************************************************************************** Continue with deinstallation *****************************************************************************/ 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); { rdbms70 = v7_translate("RDBMS70"); } [ 'UNBOUND_ENVIRONMENT_VARIABLE: information_dialog(instantiate( unknown_rdbms70_prompt ), nls( unknown_rdbms70_content ), instantiate( unknown_rdbms70_help ) ); ] { pro15 = v7_translate("PRO15"); } [ 'UNBOUND_ENVIRONMENT_VARIABLE: information_dialog(instantiate( unknown_pro15_prompt ), nls( unknown_pro15_content ), instantiate( unknown_pro15_help ) ); ] ui_action( instantiate( unregistering ) ); unregister(registry); ui_action( instantiate( deinst_sql ) ); remove(sql); ui_action( instantiate( deinst_msb ) ); remove(msg); /* If UTIL70 is not registered, remove RDBMS70 from config.ora */ if ( not( registered( "dosutil70" ) ) ) { ui_action( modify_config ); modify("RDBMS70","","%ora_config%","="); } if ( not( registered( "dosproc15" ) ) && not( registered( "dospro15" ) ) ) { ui_action( modify_config ); modify("PRO15","","%ora_config%","="); } ui_action( instantiate( deinst_script ) ); remove(deinstl); } }