home *** CD-ROM | disk | FTP | other *** search
- #-------------------------------------------------------------------------
- #
- # FILE
- # INSTALL.ORI
- # V2 installation script language interpreter file.
- #
- # DESCRIPTION
- # Installation file for the Utilites disks.
- #
- # MODIFIED
- # Tim Kelley 23-AUG-89 Original version
- # Ben Sloss 29-JAN-90 Utilites 5.1C/DOS
- #
- #
- #-------------------------------------------------------------------------
-
- #-------------------------------------------------------------------------
- # Generate symbols for Disk Volume label and Jacket label for disks.
- #-------------------------------------------------------------------------
- .LABELGEN
- u
- V60 UTILS %u
- DOS Utilities Disk %u
-
- .FILES -NOCOPY
- INSTALL.ORI 8207
-
- .PROT_USAGE=9
- .REAL_USAGE=9
- .BOTH_USAGE=16
- .PRODUCT_NAME=Utilities
- .PRODUCT_VERSION=6.0.31.0.3
- .PRODUCT_NUMBER=26
- .SUPP_REQUIRED=6.0.31.0.1
-
- .CHECKREG %PRODUCT_NUMBER%
- PRODUCT
- VERSION
-
- .CHECKREG 34
- SUPPORT
- SUPP_VERSION
-
- .IF (%SUPPORT%=="" || %SUPP_VERSION% < %SUPP_REQUIRED%)
- .MESSAGE
- %WARNING%
-
- You have not installed Required Support Files %SUPP_REQUIRED%.
- Please install Required Support Files %SUPP_REQUIRED% or later
- and then install %PRODUCT_NAME%.
-
- .PAUSE
- .EXIT
- .ENDIF
-
- .<CHECK_INST>
-
- .IF (%INSTALL_CHECKED%!=1)
- .SELECTPROMPT
- MODE
- Would you like to install protected, real, or both modes of executables?
- <MODEHELP>
- 1 Protected mode only
- 2 Real mode only
- 3 Both real and protected modes
- .IF (%MODE%==999)
- .EXIT
- .ENDIF
-
- .IF (%MODE%==1)
- .DISK_USAGE=%PROT_USAGE%
- .ELSE
- .IF (%MODE%==2)
- .DISK_USAGE=%REAL_USAGE%
- .ELSE
- .DISK_USAGE=%BOTH_USAGE%
- .ENDIF
- .ENDIF
-
- .<CHECK_SPACE>
-
- .IF (%PRODUCT%=="")
- .IF (%DISK_USAGE% > %FREE_SPACE%)
-
- .SELECTPROMPT
- USER_RESP
- There is insufficient disk space on drive %ORACLE_DISK%: to install this product.
- Would you like to attempt to install anyway?
- <DISK_SPACE_HELP>
- 1 No
- 2 Yes
-
- .IF (%USER_RESP%==1)
- .EXIT
- .ENDIF
- .IF (%USER_RESP%==999)
- .GOTO <CHECK_INST>
- .ENDIF
- .ENDIF
-
- .ELSE
- .SELECTPROMPT
- USER_RESP
- %PRODUCT_NAME% has already been installed.
- Would you like to reinstall it?
- <REINSTALL_HELP>
- 1 No
- 2 Yes
-
- .IF (%USER_RESP%==1)
- .EXIT
- .ENDIF
- .IF (%USER_RESP%==999)
- .GOTO <CHECK_INST>
- .ENDIF
- .REINSTALL=1
- .ENDIF
- .ENDIF
-
- .CLEARSCREEN
-
- .MESSAGE
- %NORMAL% This routine will install Oracle's RDBMS utilities: IMP, EXP, and
- SQL*DBA. These utilities will enable you to back up and restore data
- in your ORACLE database, and perform DBA tasks, such as starting up,
- shutting down, and creating new databases.
-
- .PAUSE
-
- .IF (%REINSTALL%==1)
- .IF (%VERSION%<"6" && %VERSION%>="5")
- .SELECTPROMPT
- %USER_RESP%
- Version %VERSION% of IMP and EXP are already installed.
- Would you like to rename them to V5IMP and V5EXP or overwrite them?
- <V5_HELP>
- 1 Overwrite
- 2 Rename
-
- .IF (%USER_RESP%==999)
- .IF (%INSTALL_CHECKED%==1)
- .EXIT
- .ENDIF
- .IF (%DISK_USAGE%>%FREE_SPACE% || %PRODUCT%!="")
- .GOTO <CHECK_SPACE>
- .ELSE
- .GOTO <CHECK_INST>
- .ENDIF
- .ENDIF
-
- .IF (%USER_RESP%==2)
- .MESSAGE
- %NORMAL% Renaming IMP and EXP to V5IMP and V5EXP...
-
- .ACCESS
- %ORACLE_HOME%\BIN\IMP.EXE
-
- .IF (%ACCESSRET%==1)
- .SYSCALL
- COPY %ORACLE_HOME%\BIN\IMP.EXE %ORACLE_HOME%\BIN\V5IMP.EXE >NUL
- .SYSCALL
- DEL %ORACLE_HOME%\BIN\IMP.EXE
- .ENDIF
-
- .ACCESS
- %ORACLE_HOME%\BIN\EXP.EXE
-
- .IF (%ACCESSRET%==1)
- .SYSCALL
- COPY %ORACLE_HOME%\BIN\EXP.EXE %ORACLE_HOME%\BIN\V5EXP.EXE >NUL
- .SYSCALL
- DEL %ORACLE_HOME%\BIN\EXP.EXE
- .ENDIF
-
- .ACCESS
- %ORACLE_HOME%\PBIN\IMP.PXE
-
- .IF (%ACCESSRET%==1)
- .SYSCALL
- COPY %ORACLE_HOME%\PBIN\IMP.PXE %ORACLE_HOME%\PBIN\V5IMP.PXE >NUL
- .SYSCALL
- DEL %ORACLE_HOME%\PBIN\IMP.PXE
- .SYSCALL
- COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\V5IMP.COM >NUL
- .SYSCALL
- DEL %ORACLE_HOME%\PBIN\IMP.COM
- .ENDIF
-
- .ACCESS
- %ORACLE_HOME%\PBIN\EXP.PXE
-
- .IF (%ACCESSRET%==1)
- .SYSCALL
- COPY %ORACLE_HOME%\PBIN\EXP.PXE %ORACLE_HOME%\PBIN\V5EXP.PXE >NUL
- .SYSCALL
- DEL %ORACLE_HOME%\PBIN\EXP.PXE
- .SYSCALL
- COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\V5EXP.COM >NUL
- .SYSCALL
- DEL %ORACLE_HOME%\PBIN\EXP.COM
- .ENDIF
- .ENDIF
- .ENDIF
- .ENDIF
-
- .CLEARSCREEN
-
- .MESSAGE
- %NORMAL% Installing IMP, EXP, and SQL*DBA into %ORACLE_HOME%...
-
- .IF ((%MODE%==1) || (%MODE%==3))
- .MESSAGE
- %NORMAL% Copying protected-mode executables into %ORACLE_HOME%\PBIN...
-
- .FILES
- IMP.PXE 205819 %ORACLE_HOME%\PBIN\IMP.PXE
- EXP.PXE 237129 %ORACLE_HOME%\PBIN\EXP.PXE
- SQLDBA.PXE 307011 %ORACLE_HOME%\PBIN\SQLDBA.PXE
-
- .SYSCALL -QUIET
- COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\IMP.COM >NUL
-
- .SYSCALL -QUIET
- COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\EXP.COM >NUL
-
- .SYSCALL -QUIET
- COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\SQLDBA.COM >NUL
-
- .ENDIF
-
- .IF ((%MODE%==2) || (%MODE%==3))
- .MESSAGE
- %NORMAL% Copying real-mode executables into %ORACLE_HOME%\BIN...
-
- .FILES
- IMP.EXE 214272 %ORACLE_HOME%\BIN\IMP.EXE
- EXP.EXE 246478 %ORACLE_HOME%\BIN\EXP.EXE
- SQLDBA.EXE 317692 %ORACLE_HOME%\BIN\SQLDBA.EXE
-
- .ENDIF
-
- .MESSAGE
- %NORMAL% Copying message files into %ORACLE_HOME%\DBS...
-
- .FILES
- IMPUS.MSB 6144 %ORACLE_HOME%\DBS\IMPUS.MSB
- EXPUS.MSB 6656 %ORACLE_HOME%\DBS\EXPUS.MSB
- DBAUS.MSB 10752 %ORACLE_HOME%\DBS\DBAUS.MSB
-
- .ACCESS
- %ORACLE_HOME%\DBS\DEFAULT.CRT
-
- .IF (%ACCESSRET%==0)
- .MESSAGE
- %NORMAL% Copying CRT files into %ORACLE_HOME%\DBS...
-
- .FILES
- ANSI.CRT 4525 %ORACLE_HOME%\DBS\ANSI.CRT
- BIOS.CRT 4461 %ORACLE_HOME%\DBS\BIOS.CRT
- BIOS.CRT 4461 %ORACLE_HOME%\DBS\DEFAULT.CRT
-
- .MESSAGE
- %HILITE% Modifying %CONFIG%...
-
- .MODFILE
- %CONFIG%
- ORACLE_TIO=VIDEO
-
- .MESSAGE
- %NORMAL%
- BIOS has been made your default CRT definition. If the SQL*DBA
- monitor doesn't paint your screen correctly, try the following:
-
- o Put DEVICE=C:\ANSI.SYS in your CONFIG.SYS file
- o Change %CONFIG% to include ORACLE_TIO=ANSI
- o Copy ANSI.CRT to DEFAULT.CRT in %ORACLE_HOME%\DBS
-
- .PAUSE
- .ENDIF
-
- .MESSAGE
- %NORMAL% Updating registration information...
-
- .REGISTERFILE
- %PRODUCT_NUMBER% %PRODUCT_NAME%
- %PRODUCT_VERSION%
- <DEINSTALL>
-
- .EXIT
-
- .<DISK_SPACE_HELP>
- %PRODUCT_NAME% requires %DISK_USAGE%00K to install. There is %FREE_SPACE%00K free on
- drive %ORACLE_DISK%:. You may try to proceed anyway. Unless you plan to install
- only a portion of it or you are reinstalling after an unsuccessful
- installation, ORAINST will probably terminate abnormally.
-
- .<REINSTALL_HELP>
- %PRODUCT_NAME% has an entry in REGISTER.ORA, indicating that it has
- been installed previously. You may either abort this installation and
- save the version you have already installed, or you may reinstall and
- overwrite the existing version. Entry in REGISTER.ORA follows.
-
- Product: %PRODUCT%
- Version: %VERSION%
-
- .<MODEHELP>
- Normally, you will install protected-mode executables. If you do not have
- extended memory or you are installing on an 8088- or 8086-based PC, choose
- real-mode executables. If you are unsure, choose both.
-
- .<V5HELP>
- This install will overwrite any previous versions of IMP, EXP, and
- SQL*DBA. The versions included in this product will only connect
- to a version 6 ORACLE RDBMS. You have version %VERSION% IMP and EXP
- installed. They will connect to a version 5 and a version 6 RDBMS.
- Would you like to have your version %VERSION% IMP and EXP renamed to
- V5IMP and V5EXP, or would you like to overwrite them?
-
- .<DEINSTALL>
- %ORACLE_HOME%\BIN\V5IMP.EXE
- %ORACLE_HOME%\BIN\V5EXP.EXE
- %ORACLE_HOME%\PBIN\V5IMP.PXE
- %ORACLE_HOME%\PBIN\V5EXP.PXE
- %ORACLE_HOME%\PBIN\V5IMP.COM
- %ORACLE_HOME%\PBIN\V5EXP.COM
- %ORACLE_HOME%\PBIN\IMP.COM
- %ORACLE_HOME%\PBIN\EXP.COM
- %ORACLE_HOME%\PBIN\SQLDBA.COM