home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 17.ddi / INSTALL.ORI < prev    next >
Encoding:
Text File  |  1991-03-12  |  10.8 KB  |  419 lines

  1. #-------------------------------------------------------------------------
  2. #
  3. # FILE
  4. #       INSTALL.ORA
  5. #       V2 installation script language interpreter file.
  6. #
  7. # DESCRIPTION
  8. #       This is the INSTALL.ORI file for the V6 RDBMS.
  9. #
  10. # OWNER
  11. #       Tim Kelley
  12. #
  13. # CREATION DATE
  14. #       06-JUL-89
  15. #
  16. # CURRENT DATE
  17. #       05-NOV-90
  18. #
  19. #-------------------------------------------------------------------------
  20.  
  21. #-------------------------------------------------------------------------
  22. # Generate symbols for Disk Volume label and Jacket label for disks.
  23. #-------------------------------------------------------------------------
  24. .LABELGEN
  25. i
  26. V60 RDBMS %i
  27. RDBMS Disk %i
  28.  
  29. .FILES -NOCOPY
  30. INSTALL.ORI       11016
  31.  
  32. .DISK_USAGE=77
  33. .PRODUCT_NAME=RDBMS
  34. .PRODUCT_VERSION=6.0.31.2.2
  35. .PRODUCT_NUMBER=1
  36. .SUPP_REQUIRED=6.0.31.2.2
  37.  
  38. .CHECKREG %PRODUCT_NUMBER%
  39.  PRODUCT
  40.  VERSION
  41.  
  42. .CHECKREG 34
  43.  SUPPORT
  44.  SUPP_VERSION
  45.  
  46. .IF (%SUPPORT%=="" || %SUPP_VERSION% < %SUPP_REQUIRED%)
  47.  .MESSAGE
  48.   %WARNING%
  49.  
  50.   You have not installed Required Support Files %SUPP_REQUIRED%.
  51.   Please install Required Support Files %SUPP_REQUIRED% or later
  52.   and then install %PRODUCT_NAME%.
  53.  
  54.  .PAUSE
  55.  .EXIT
  56. .ENDIF
  57.  
  58. .<CHECK_INST>
  59.  
  60. .IF (%INSTALL_CHECKED%!=1)
  61.  .IF (%PRODUCT%=="")
  62.   .IF (%DISK_USAGE% > %FREE_SPACE%)
  63.  
  64.    .SELECTPROMPT
  65.     USER_RESP
  66.     There is insufficient disk space on %ORACLE_DISK% to install
  67.     this product.  Would you like to attempt to install anyway?
  68.     <DISK_SPACE_HELP>
  69.     1     No
  70.     2     Yes
  71.  
  72.    .IF (%USER_RESP%==999 || %USER_RESP%==1)
  73.     .EXIT
  74.    .ENDIF
  75.   .ENDIF
  76.  
  77.  .ELSE
  78.  
  79.   .SELECTPROMPT
  80.    USER_RESP
  81.    %PRODUCT_NAME% has already been installed.
  82.    Would you like to reinstall it?
  83.    <REINSTALL_HELP>
  84.    1     No
  85.    2     Yes
  86.  
  87.   .IF (%USER_RESP%==999 || %USER_RESP%==1)
  88.    .EXIT
  89.   .ENDIF
  90.  .ENDIF
  91. .ENDIF
  92.  
  93. .<NEWDBS>
  94.  
  95. .RDBMS=1
  96. .SEED=2
  97. .BOTH=3
  98.  
  99. .SELECTPROMPT
  100.  USER_RESP
  101.  This install will copy the ORACLE RDBMS software to your hard disk.
  102.  This install can also create a new ORACLE database in
  103.  %ORACLE_HOME%\DBS.  This will destroy any existing ORACLE database
  104.  in %ORACLE_HOME%\DBS.  You must have already installed the DOS
  105.  Utilities before the new database can be created.  Would you like
  106.  to install only the RDBMS, only the initial database, or both?
  107.  <SEEDHELP>
  108.  1       RDBMS software only
  109.  2       Initial database only
  110.  3       Both the RDBMS and the initial database
  111.  
  112. .IF (%USER_RESP%==999)
  113.  .IF (%INSTALL_CHECKED%!=1 && (%DISK_USAGE%>%FREE_SPACE% || %PRODUCT%!=""))
  114.   .GOTO <CHECK_INST>
  115.  .ELSE
  116.   .EXIT
  117.  .ENDIF
  118. .ENDIF
  119.  
  120. .IF (%USER_RESP%==%SEED% || %USER_RESP%==%BOTH%)
  121.  .CHECKREG 26
  122.   UTILITIES
  123.   VERSION
  124.  
  125.  .IF (%UTILITIES%=="" || %VERSION% < "6.0")
  126.   .SELECTPROMPT
  127.    USER_RESP
  128.    You have not installed the ORACLE DOS Utilities disk.  The initial
  129.    database will not be installed.  Would you like to continue?
  130.    <UTIL_HELP>
  131.    1     Return to the Install Menu
  132.    2     Continue, and do not install the initial database
  133.  
  134.   .IF (%USER_RESP%==1)
  135.    .EXIT
  136.   .ENDIF
  137.   .IF (%USER_RESP%==999)
  138.    .GOTO <NEWDBS>
  139.   .ENDIF
  140.   .USER_RESP=%RDBMS%
  141.  .ENDIF
  142. .ENDIF
  143.  
  144. .SYSCALL
  145.  %ORACLE_DISK%:
  146.  
  147. .SYSCALL
  148.  CD %ORACLE_HOME%\DBS
  149.  
  150. .IF (%USER_RESP%==%RDBMS% || %USER_RESP%==%BOTH%)
  151.  .CLEARSCREEN
  152.  
  153.  .<PASSWD>
  154.  .STRINGPROMPT QUIET 6 32
  155.   PASSWORD1
  156.   Choose a password at least six characters long for DBA authorization.
  157.   <PASSWDHELP>
  158.  
  159.  .IF (%PASSWORD1%=="999")
  160.   .GOTO <NEWDBS>
  161.  .ENDIF
  162.  
  163.  .IF (%PASSWORD1%=="!TOOSHORT")
  164.   .MESSAGE
  165.    %WARNING%
  166.    The password you have chosen is too short.  Please enter a password
  167.    at least six characters in length.
  168.  
  169.   .GOTO <PASSWD>
  170.  .ENDIF
  171.  
  172.  .STRINGPROMPT QUIET 6 32
  173.   PASSWORD2
  174.   Enter it again for verification.
  175.   <PASSWDHELP>
  176.  
  177.  .IF (%PASSWORD2%=="999")
  178.   .CLEARSCREEN
  179.   .GOTO <PASSWD>
  180.  .ENDIF
  181.  
  182.  .IF (%PASSWORD1%!=%PASSWORD2%)
  183.   .MESSAGE
  184.    %WARNING%
  185.    The password did not verify.
  186.  
  187.   .GOTO <PASSWD>
  188.  .ENDIF
  189.  
  190.  .ENCRYPT
  191.   %PASSWORD1%
  192.   PASSWORD2
  193.  
  194.  .MODFILE
  195.   %CONFIG%
  196.   DBA_AUTHORIZATION=%PASSWORD1%
  197.  
  198.  .MESSAGE
  199.   %NORMAL%
  200.   The DBA authorization password you chose has been recorded in the
  201.   file %CONFIG%.  It will not be necessary to provide
  202.   it every time you wish to STARTUP, SHUTDOWN, or CONNECT INTERNAL.
  203.   If you wish to have greater security, delete the line beginning with
  204.   DBA_AUTHORIZATION= from file %CONFIG%.  You will
  205.   then have to provide the DBA authorization password every time you
  206.   wish to STARTUP, SHUTDOWN, or CONNECT INTERNAL.  See the Installation
  207.   and User's Guide for more information.
  208.  
  209.  .PAUSE
  210.  
  211.  .MESSAGE
  212.   %NORMAL% Copying the ORACLE kernel into %ORACLE_HOME%\BIN...
  213.  
  214.  .FILES
  215. DBAPWD.EXE        74794   %ORACLE_HOME%\BIN\DBAPWD.EXE
  216. ORACLE6.EXE       20107   %ORACLE_HOME%\BIN\ORACLE6.EXE
  217. ORACLE.PXE      1989118   %ORACLE_HOME%\BIN\ORACLE.PXE
  218. ORACLE.BAT          405   %ORACLE_HOME%\BIN\ORACLE.BAT
  219. ORACLE.MAP       138866   %ORACLE_HOME%\BIN\ORACLE.MAP
  220. TKPROF.EXE       195382   %ORACLE_HOME%\BIN\TKPROF.EXE
  221. TKPROF.PXE       202577   %ORACLE_HOME%\PBIN\TKPROF.PXE
  222. DMPFMT.EXE        23732   %ORACLE_HOME%\PBIN\DMPFMT.EXE
  223.  
  224.  .MESSAGE
  225.   %NORMAL% Copying message files into %ORACLE_HOME%\DBS...
  226.  
  227.  .FILES
  228. PWDUS.MSB          2560   %ORACLE_HOME%\DBS\PWDUS.MSB
  229.  
  230.  .SPAWN -SINGLE -QUIET
  231.   DBAPWD %RDBMS_FILENAME% %PASSWORD2%
  232.  
  233.  .MESSAGE
  234.   %NORMAL% Copying DBA SQL scripts into %ORACLE_HOME%\DBS...
  235.  
  236.  .FILES
  237. SQL.BSQ           28879   %ORACLE_HOME%\DBS\SQL.BSQ
  238. BLOCKING.SQL       4081   %ORACLE_HOME%\DBS\BLOCKING.SQL
  239. BSTAT.SQL          1507   %ORACLE_HOME%\DBS\BSTAT.SQL
  240. CATALOG.SQL      177063   %ORACLE_HOME%\DBS\CATALOG.SQL
  241. CATALOG5.SQL      47582   %ORACLE_HOME%\DBS\CATALOG5.SQL
  242. DBA_SYNO.SQL       2863   %ORACLE_HOME%\DBS\DBA_SYNO.SQL
  243. DISPIDXS.SQL       1968   %ORACLE_HOME%\DBS\DISPIDXS.SQL
  244. DROPCAT5.SQL       3029   %ORACLE_HOME%\DBS\DROPCAT5.SQL
  245. ESTAT.SQL          4792   %ORACLE_HOME%\DBS\ESTAT.SQL
  246. EXPVEW.SQL        21574   %ORACLE_HOME%\DBS\EXPVEW.SQL
  247. EXPVEW5.SQL       28004   %ORACLE_HOME%\DBS\EXPVEW5.SQL
  248. IDXSTAT.SQL        1524   %ORACLE_HOME%\DBS\IDXSTAT.SQL
  249. LOCKTREE.SQL       5251   %ORACLE_HOME%\DBS\LOCKTREE.SQL
  250. MONITOR.SQL        1876   %ORACLE_HOME%\DBS\MONITOR.SQL
  251. ONEIDXS.SQL        8789   %ORACLE_HOME%\DBS\ONEIDXS.SQL
  252. XPLAINPL.SQL        767   %ORACLE_HOME%\DBS\XPLAINPL.SQL
  253.  
  254.  .ACCESS
  255.   %ORACLE_HOME%\DBS\INIT.ORA
  256.  
  257.  .IF (%ACCESSRET%==0)
  258.   .MESSAGE
  259.    %NORMAL% Copying parameter file into %ORACLE_HOME%\DBS...
  260.  
  261.   .FILES
  262. INIT.ORA           1389   %ORACLE_HOME%\DBS\INIT.ORA
  263.  
  264.  .ENDIF
  265. .ENDIF
  266.  
  267. .IF (%USER_RESP%==%SEED%)
  268.  .CLEARSCREEN
  269.  
  270.  .<PASSWD2>
  271.  .STRINGPROMPT QUIET 6 32
  272.   PASSWORD1
  273.   Enter your DBA authorization password for verification.
  274.   <PASSWDHELP2>
  275.  
  276.  .IF (%PASSWORD1%=="999")
  277.   .GOTO <PASSWD2>
  278.  .ENDIF
  279.  
  280.  .IF (%PASSWORD1%=="!TOOSHORT")
  281.   .MESSAGE
  282.    %WARNING%
  283.    The password you entered is too short.  Please enter your DBA
  284.    authorization password.
  285.  
  286.   .GOTO <PASSWD2>
  287.  .ENDIF
  288. .ENDIF
  289.  
  290. .IF (%USER_RESP%==%SEED% || %USER_RESP%==%BOTH%)
  291.  
  292.  .MESSAGE
  293.   %NORMAL%
  294.   Installing the initial database...
  295.  
  296.  .FILES
  297. INIT.ORA           1389   %ORACLE_HOME%\DBS\INIT.ORA
  298. LOG1.ORA         205312   %ORACLE_HOME%\DBS\LOG1.ORA
  299. LOG2.ORA         205312   %ORACLE_HOME%\DBS\LOG2.ORA
  300. DBS1.ORA        2097664   %ORACLE_HOME%\DBS\DBS1.ORA
  301. USERS1.ORA        77312   %ORACLE_HOME%\DBS\USERS1.ORA
  302. CONTROL1.ORA      40448   %ORACLE_HOME%\DBS\CONTROL1.ORA
  303.  
  304.  .MESSAGE
  305.   %NORMAL% Expanding the initial database.  A record of this process will be
  306.   written to %ORACLE_HOME%\DBS\INSTALL.LOG.  Please wait...
  307.  
  308.  .WRITEFILE
  309.   DBS2.ORA
  310.   DUMMY
  311.  
  312.  .SYSCALL -QUIET
  313.   DEL DBS2.ORA
  314.  
  315.  .WRITEFILE
  316.   USERS2.ORA
  317.   DUMMY
  318.  
  319.  .SYSCALL -QUIET
  320.   DEL USERS2.ORA
  321.  
  322.  .WRITEFILE
  323.   INSTALL.SQL
  324.   startup
  325.   connect internal
  326.  
  327.   alter tablespace system
  328.   add datafile '%ORACLE_HOME%\DBS\DBS2.ORA' size 1M;
  329.  
  330.   alter tablespace users
  331.   add datafile '%ORACLE_HOME%\DBS\USERS2.ORA' size 1M;
  332.  
  333.   alter database oracle close;
  334.  
  335.   alter database oracle
  336.   rename file 'DBS1.ORA','USERS1.ORA','LOG1.ORA','LOG2.ORA'
  337.   to '%ORACLE_HOME%\DBS\DBS1.ORA','%ORACLE_HOME%\DBS\USERS1.ORA',
  338.      '%ORACLE_HOME%\DBS\LOG1.ORA','%ORACLE_HOME%\DBS\LOG2.ORA';
  339.  
  340.   disconnect
  341.   shutdown
  342.   exit
  343.  
  344.  .SYSCALL
  345.   SQLPME >INSTALL.LOG
  346.  
  347.  .SYSCALL
  348.   ORACLE6 >>INSTALL.LOG
  349.  
  350.  .SPAWN INSTALL.LOG
  351.   SQLDBA @INSTALL.SQL AUTHORIZATION=%PASSWORD1%
  352.  
  353.  .SYSCALL -QUIET
  354.   REMPME >>INSTALL.LOG
  355.  
  356. .ENDIF
  357.  
  358. .IF (%USER_RESP%==%RDBMS% || %USER_RESP%==%BOTH%)
  359.  .MESSAGE
  360.   %NORMAL% Updating product registration information...
  361.  
  362.  .REGISTERFILE
  363.   %PRODUCT_NUMBER% %PRODUCT_NAME%
  364.   %PRODUCT_VERSION%
  365.   <DEINSTALL>
  366. .ENDIF
  367.  
  368. .EXIT
  369.  
  370. .<DISK_SPACE_HELP>
  371. %PRODUCT_NAME% requires %DISK_USAGE%00K to install.  There is %FREE_SPACE%00K free on
  372. drive %ORACLE_DISK%:.  You may try to proceed anyway.  Unless you plan to install
  373. only a portion of it or you are reinstalling after an unsuccessful
  374. installation, ORAINST will probably terminate abnormally.
  375.  
  376. .<REINSTALL_HELP>
  377. %PRODUCT_NAME% has an entry in REGISTER.ORA, indicating that it has
  378. been installed previously.  You may either abort this installation and
  379. save the version you have already installed, or you may reinstall and
  380. overwrite the existing version.  Entry in REGISTER.ORA follows.
  381.  
  382. Product:  %PRODUCT%
  383. Version:  %VERSION%
  384.  
  385. .<SEEDHELP>
  386. If you choose to install the RDBMS, ORACLE database management software
  387. will be copied into %ORACLE_HOME%\BIN.
  388. If you choose to install the initial database, database files, log files,
  389. and a control file will be copied into %ORACLE_HOME%\DBS.  They may be
  390. copied over any existing database there (if any).  In order to install
  391. this initial database, you must have already installed the DOS Utilities
  392. disk.  If you wish to install the initial database but have not yet
  393. installed the Utilities, you can hit <ESC> to go back and install the
  394. RDBMS and initial database later.  See your ORACLE RDBMS documentation
  395. for more information on this initial database.
  396.  
  397. .<PASSWDHELP>
  398. You must enter a password at least six characters long which will be used
  399. in the future to verify your authority to perform certain restricted DBA
  400. functions (STARTUP, SHUTDOWN, and CONNECT INTERNAL).  If you forget this
  401. password you will have to reinstall the RDBMS before you can perform these
  402. functions.
  403.  
  404. .<PASSWDHELP2>
  405. You must enter the password you chose when you installed the RDBMS.  This
  406. password is needed to start up and expand the initial database.
  407.  
  408. .<UTIL_HELP>
  409. The DOS Utilities have not been installed on this machine or the version
  410. that is installed is not current.  The install needs to use SQL*DBA to
  411. start up and expand the initial database.  If you wish to install the
  412. initial database, return to the install menu and install the utilities
  413. before attempting the RDBMS install.
  414.  
  415. .<DEINSTALL>
  416. %ORACLE_HOME%\DBS\DBS2.ORA
  417. %ORACLE_HOME%\DBS\USERS2.ORA
  418. %ORACLE_HOME%\DBS\INSTALL.LOG
  419.