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