home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 53.ddi / RDBMS70.INS < prev    next >
Encoding:
Text File  |  1993-03-18  |  2.4 KB  |  91 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     rdbms70.ins - NetWare V3 installation script for the ORACLE version 7 rdbms
  5.  
  6.   DESCRIPTION
  7.     This script installs the ORACLE version 7 rdbms by copying the appropriate
  8.     files and optionally installing a "seed" database.
  9.  
  10.   OWNER
  11.     Tony Rodgers
  12.  
  13.   MODIFIED    DD-MMM-YY Reason
  14.     vokamura  20-NOV-92 update
  15.     vokamura  23-JUL-92 Modify for NetWare installation
  16.     trodgers  01-APR-92 Created.
  17. *****************************************************************************/
  18. {
  19. /*****************************************************************************
  20.   Start processing ...
  21. *****************************************************************************/
  22.   if (doit)
  23.   {
  24.     install( nwutil70 );
  25.     install( nwspx11 );
  26.  
  27.     ui_product(product_label);
  28.  
  29.     ui_action( instantiate(installing_scripts) );
  30.     copy(deinstl);
  31.  
  32.     ui_action( instantiate(installing_nlms) );
  33.     copy(nlm,dist_response);
  34.  
  35.     ui_action( installing_patches );
  36.     copy(novpat);
  37.  
  38.     ui_action( instantiate(installing_msbs) );
  39.     copy(msg,nls_abbreviation);
  40.  
  41.     ui_action( instantiate(installing_ncf) );
  42.     copy(ncf);
  43.  
  44.     ui_action( instantiate(installing_sql) );
  45.     copy(sql);
  46.  
  47.     ui_action( installing_plsql );
  48.     copy(plsql);
  49.  
  50.     ui_action( instantiate(installing_demo) );
  51.     copy(demo);
  52.  
  53.     ui_action( instantiate(installing_doc) );
  54.     copy(doc);
  55.  
  56.     if (install_seed_database)
  57.     {
  58.       ui_action( installing_seed );
  59.       copy(init);
  60.       copy(seed);
  61.     }
  62.     else
  63.       if (not(exists("%rdbms70%\init.ora")))
  64.         copy(init);
  65.  
  66.     ui_action( instantiate(modifying_server_config) );
  67.     modify("RDBMS70",RDBMS70,"%server%/%ora_config%","=");
  68.     modify("PLSQL20",PLSQL20,"%server%/%ora_config%","=");
  69.     modify("DBA_AUTHORIZATION","BYPASS","%server%/%ora_config%","=");
  70.     modify("ORA_SQLDBA_MODE","LINE","%server%/%ora_config%","=");
  71.     modify("NLS_LANG",nls_language,"%server%/%ora_config%","=");
  72.  
  73.     {
  74.       ui_action("%grp_msg%");
  75.       nw_create_group("%server%", "%grp_name%");
  76.     }
  77.     [ 'ALREADY_EXISTS: continue(); ]
  78.  
  79.  
  80.     ui_action( instantiate(registering) );
  81.     register(product,comment);
  82.  
  83.  
  84.    information_dialog(exit7_prompt);
  85.  
  86.   }
  87.  
  88.   if (not(internally_called))
  89.     reference(product);
  90. }
  91.