home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 14.ddi / INSTALL.ORI < prev   
Encoding:
Text File  |  1991-03-06  |  13.8 KB  |  553 lines

  1. #-------------------------------------------------------------------------
  2. #
  3. # FILE
  4. #       INSTALL.ORI
  5. #       V2 installation script language interpreter file.
  6. #
  7. # DESCRIPTION
  8. #       Installation file for the SQL*Forms disk.
  9. #
  10. # MODIFIED
  11. #       MRMILLER
  12. #
  13. #-------------------------------------------------------------------------
  14.  
  15. #-------------------------------------------------------------------------
  16. # Generate symbols for Disk Volume label and Jacket label for disks.
  17. #-------------------------------------------------------------------------
  18. .LABELGEN
  19. u
  20. V60 FORM %u
  21. SQL*Forms Disk %u
  22.  
  23. .FILES -NOCOPY
  24. INSTALL.ORI       14174
  25.  
  26. .DISK_USAGE=74
  27. .PRODUCT_NAME=SQL*Forms
  28. .PRODUCT_VERSION=3.0.16.4.1
  29. .PRODUCT_NUMBER=5
  30. .UTIL_REQUIRED=1.0.9.0.2
  31.  
  32. .CHECKREG %PRODUCT_NUMBER%
  33.  PRODUCT
  34.  VERSION
  35.  
  36. .CHECKREG 2
  37.  UTILS
  38.  UTIL_VERSION
  39.  
  40. .IF (%UTILS%=="" || %UTIL_VERSION% < %UTIL_REQUIRED%)
  41.  .MESSAGE
  42.   %WARNING%
  43.  
  44.   You have not installed Tools Utilities %UTIL_REQUIRED%.
  45.   Please install Tools Utilities %UTIL_REQUIRED% or later
  46.   and then install %PRODUCT_NAME%.
  47.  
  48.  .PAUSE
  49.  .EXIT
  50. .ENDIF
  51.  
  52. .CHECKREG 1
  53.  RDBMS
  54.  RDBMS_VERSION
  55.  
  56. .<CHECK_INST>
  57.  
  58. .IF (%INSTALL_CHECKED%!=1)
  59.  .IF (%PRODUCT%=="")
  60.   .IF (%DISK_USAGE% > %FREE_SPACE%)
  61.  
  62.    .SELECTPROMPT
  63.     USER_RESP
  64.     There is insufficient disk space on drive %ORACLE_DISK%: to install this product.
  65.     Would you like to attempt to install anyway?
  66.     <DISK_SPACE_HELP>
  67.     1     No
  68.     2     Yes
  69.  
  70.    .IF (%USER_RESP%==1 || %USER_RESP%==999)
  71.     .EXIT
  72.    .ENDIF
  73.   .ENDIF
  74.  
  75.  .ELSE
  76.   .SELECTPROMPT
  77.    USER_RESP
  78.    %PRODUCT_NAME% has already been installed.
  79.    Would you like to reinstall it?
  80.    <REINSTALL_HELP>
  81.    1     No
  82.    2     Yes
  83.  
  84.   .IF (%USER_RESP%==1 || %USER_RESP%==999)
  85.    .EXIT
  86.   .ENDIF
  87.  .ENDIF
  88. .ENDIF
  89.  
  90. .<APPBUILDL>
  91. .SELECTPROMPT
  92.  APPLIC
  93.  This procedure installs SQL*Forms, which can be used to both generate
  94.  and utilize sophisticated data entry forms.  Operators only using
  95.  existing forms for data entry/query do not require all SQL*Forms
  96.  software.  If you plan to design forms and develop applications, you
  97.  will need to install SQL*Forms application-building software.
  98.  <HELP1>
  99.  1       Install SQL*Forms application-building software
  100.  2       Do NOT install application-building software
  101.  
  102. .IF (%APPLIC%==999)
  103.  .IF (%INSTALL_CHECKED%!=1 && (%DISK_USAGE%>%FREE_SPACE% || %PRODUCT%!=""))
  104.   .GOTO <CHECK_INST>
  105.  .ELSE
  106.   .EXIT
  107.  .ENDIF
  108. .ENDIF
  109.  
  110. .IF (%APPLIC%==1)
  111.  .SELECTPROMPT
  112.   RUNEXIT
  113.   Included with the application-building software are files necessary
  114.   to build a customized RUNFORM.EXE containing user exits, which may
  115.   be written in C, FORTRAN or COBOL.
  116.   <RUNEXITHELP>
  117.   1 Install support for user exits
  118.   2 Do not install user exit support
  119.  
  120.  .IF (%RUNEXIT%==999)
  121.   .GOTO <APPBUILDL>
  122.  .ENDIF
  123.  
  124.  .<APPLTABSL>
  125.  .APPLTABS=0
  126.  .IF (%RDBMS%!="" && %RDBMS_VERSION%>=6)
  127.   .CLEARSCREEN
  128.   .MESSAGE
  129.    %NORMAL% SQL*Forms requires that special tables be added to your database
  130.    if you will be designing forms and developing applications.  If
  131.    you have previously installed SQL*Forms and these tables already
  132.    exist in your database, they may need to be upgraded to work with
  133.    this version of SQL*Forms.
  134.  
  135.    If you are installing SQL*Forms with a local ORACLE database, and
  136.    the local ORACLE database has already been installed on this
  137.    machine, this installation process can automatically add or
  138.    modify these tables as necessary.
  139.  
  140.    If you would like to add these tables yourself, or if you are
  141.    accessing a remote ORACLE database using SQL*Net, please see the
  142.    section on SQL*Forms in the User's Guide.
  143.  
  144.   .PAUSE
  145.   .SELECTPROMPT
  146.    APPLTABS
  147.    Do you want this installation procedure to automatically update or
  148.    add the tables to your database?
  149.    <APPLTABSHELP>
  150.    1 Update / Add the tables to the database
  151.    2 Do NOT add the tables to the database
  152.  
  153.   .IF (%APPLTABS%==999)
  154.    .GOTO <RUNEXITL>
  155.   .ENDIF
  156.  .ENDIF
  157. .ENDIF
  158.  
  159. .CLEARSCREEN
  160.  
  161. .MESSAGE
  162.  %NORMAL% Copying SQL*Forms protected-mode executables into %ORACLE_HOME%\PBIN...
  163.  
  164. .FILES
  165. CONVERT.PXE      295147   %ORACLE_HOME%\PBIN\CONVERT.PXE
  166. GENERATE.PXE    1035801   %ORACLE_HOME%\PBIN\GENERATE.PXE
  167. RUNFORM.PXE     1069391   %ORACLE_HOME%\PBIN\RUNFORM.PXE
  168.  
  169. .SYSCALL -QUIET
  170. COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\CONVERT.COM >NUL
  171.  
  172. .SYSCALL -QUIET
  173. COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\GENERATE.COM >NUL
  174.  
  175. .SYSCALL -QUIET
  176. COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\RUNFORM.COM >NUL
  177.  
  178. .IF (%APPLIC%==1)
  179.  
  180.  .FILES
  181. SQLFORMS.PXE    2081515   %ORACLE_HOME%\PBIN\SQLFORMS.PXE
  182.  
  183.  .SYSCALL -QUIET
  184. COPY %ORACLE_HOME%\PBIN\PLOADR.COM %ORACLE_HOME%\PBIN\SQLFORMS.COM >NUL
  185.  
  186. .ENDIF
  187.  
  188. .MESSAGE
  189.  %NORMAL% Copying Demo forms into %ORACLE_HOME%\DBS...
  190.  
  191. .FILES
  192. CHAPTER3.INP      31869   %ORACLE_HOME%\DBS\CHAPTER3.INP
  193. CHAPTER4.INP      36233   %ORACLE_HOME%\DBS\CHAPTER4.INP
  194. CHAPTER5.INP      36548   %ORACLE_HOME%\DBS\CHAPTER5.INP
  195. CHAPTER6.INP      40516   %ORACLE_HOME%\DBS\CHAPTER6.INP
  196. ORDER.INP         48925   %ORACLE_HOME%\DBS\ORDER.INP
  197. ORDER.FRM         24012   %ORACLE_HOME%\DBS\ORDER.FRM
  198.  
  199. .MESSAGE
  200.  %NORMAL% Copying Message files and SQL scripts into %ORACLE_HOME%\DBS...
  201.  
  202. .FILES
  203. IACUS.MSB          6144   %ORACLE_HOME%\DBS\IACUS.MSB
  204. IAGUS.MSB          9216   %ORACLE_HOME%\DBS\IAGUS.MSB
  205. IADDROP.SQL        1356   %ORACLE_HOME%\DBS\IADDROP.SQL
  206. IADGRANT.SQL       2408   %ORACLE_HOME%\DBS\IADGRANT.SQL
  207. IADINDEX.SQL       1948   %ORACLE_HOME%\DBS\IADINDEX.SQL
  208. IADTABLE.SQL       5496   %ORACLE_HOME%\DBS\IADTABLE.SQL
  209. IADVIEW.SQL        4491   %ORACLE_HOME%\DBS\IADVIEW.SQL
  210. IADUPG.SQL         2661   %ORACLE_HOME%\DBS\IADUPG.SQL
  211.  
  212. .WRITEFILE
  213. %ORACLE_HOME%\BIN\FORMINS.BAT
  214. ECHO OFF
  215. ECHO  
  216. rem
  217. rem  Usage: FORMINS SYSTEM SYSTEM_PASSWORD
  218. rem
  219. IF NOT .%%1 == . GOTO FORMINS
  220. ECHO Usage: FORMINS SYSTEM SYSTEM_Password
  221. GOTO EXIT
  222. :FORMINS
  223. ECHO Loading the SQL*Forms extended data dictionary.  This will take
  224. ECHO approximately five minutes.  Please wait...
  225. ECHO
  226.  
  227. INSTLOAD %%1/%%2 %ORACLE_HOME%\DBS\IADTABLE.SQL %ORACLE_HOME%\DBS\IADTABLE.LOG
  228. INSTLOAD %%1/%%2 %ORACLE_HOME%\DBS\IADINDEX.SQL %ORACLE_HOME%\DBS\IADINDEX.LOG
  229. INSTLOAD %%1/%%2 %ORACLE_HOME%\DBS\IADVIEW.SQL %ORACLE_HOME%\DBS\IADVIEW.LOG
  230. INSTLOAD %%1/%%2 %ORACLE_HOME%\DBS\IADGRANT.SQL %ORACLE_HOME%\DBS\IADGRANT.LOG
  231.  
  232. ECHO SQL*Forms extended data Dictionary is successfully installed.
  233. :EXIT
  234.  
  235. .IF (%APPLIC%==1)
  236.  .FILES
  237. IADUS.MSB         28160   %ORACLE_HOME%\DBS\IADUS.MSB
  238. IADHLPUS.R       483328   %ORACLE_HOME%\DBS\IADHLPUS.R
  239.  
  240.  .IF (%RUNEXIT%==1)
  241.   .MESSAGE
  242.    %HILITE% Making directory %ORACLE_HOME%\PRO...
  243.  
  244.   .MKDIR
  245.    %ORACLE_HOME%\PRO
  246.  
  247.   .MKDIR
  248.    %ORACLE_HOME%\PRO\LIB
  249.  
  250.   .MKDIR
  251.    %ORACLE_HOME%\PRO\EXIT
  252.  
  253.   .MESSAGE
  254.    %NORMAL% Copying User Exit Software into %ORACLE_HOME%\PRO...
  255.  
  256.   .FILES
  257. IAPCAL.H            787   %ORACLE_HOME%\PRO\C\IAPCAL.H
  258. IAPUXW.H           4400   %ORACLE_HOME%\PRO\C\IAPUXW.H
  259. IFUSER.H           2522   %ORACLE_HOME%\PRO\C\IFUSER.H
  260. IFPDMY.LIB         4629   %ORACLE_HOME%\PRO\LIB\IFPDMY.LIB
  261. IFPLIB.LIB        73137   %ORACLE_HOME%\PRO\LIB\IFPLIB.LIB
  262. IAPDRV.OBJ          292   %ORACLE_HOME%\PRO\LIB\IAPDRV.OBJ
  263. IFMDMF.OBJ          732   %ORACLE_HOME%\PRO\LIB\IFMDMF.OBJ
  264. IFPLUT.OBJ          787   %ORACLE_HOME%\PRO\LIB\IFPLUT.OBJ
  265. IAPSUPM.LIB       47139   %ORACLE_HOME%\PRO\LIB\IAPSUPM.LIB
  266.  
  267.  .ENDIF
  268.  
  269.  .IF (%APPLTABS%==1)
  270.   .CLEARSCREEN
  271.   .DBA_FOUND=1
  272.  
  273.   .TRANSLATE
  274.    %DBA_AUTHORIZATION%
  275.    DBA_AUTHORIZATION
  276.  
  277.   .IF (%DBA_AUTHORIZATION%=="")
  278.  
  279.    .DBA_FOUND=0
  280.    .<DBAL>
  281.    .STRINGPROMPT QUIET 6 32
  282.     DBA_AUTHORIZATION
  283.     Please enter your DBA authorization password.
  284.     <DBA_HELP>
  285.  
  286.    .IF (%DBA_AUTHORIZATION%=="999")
  287.     .GOTO <DBAL>
  288.    .ENDIF
  289.    .IF (%DBA_AUTHORIZATION%=="!TOOSHORT")
  290.     .MESSAGE
  291.      %WARNING%
  292.      Error - password must be at least six characters.
  293.  
  294.     .GOTO <DBAL>
  295.    .ENDIF
  296.   .ENDIF
  297.  
  298.   .MESSAGE
  299.    %HILITE%
  300.    Starting up the database...
  301.  
  302.   .SYSCALL -QUIET
  303.    SQLPME >NUL
  304.  
  305.   .SYSCALL -QUIET
  306.    ORACLE6 >NUL
  307.  
  308.   .SPAWN
  309.    SQLDBA STARTUP AUTHORIZATION=%DBA_AUTHORIZATION%
  310.  
  311.   .IF (%SPAWNRET%!=0)
  312.    .MESSAGE
  313.     %HILITE% Error - unable to start the ORACLE database using SQLDBA.
  314.              SQL*Forms application tables will NOT be installed.
  315.  
  316.    .SYSCALL -QUIET
  317.     REMPME >NUL
  318.  
  319.    .PAUSE
  320.    .EXIT
  321.   .ENDIF
  322.  
  323.  
  324. # OK so far; make sure we have the right password.
  325.  
  326.  .PASSWD=MANAGER
  327.  
  328.  .<LOOP>
  329.  .SPAWN
  330.  CHKALL -FORMS SYSTEM %PASSWD%
  331.  .IF (%SPAWNRET%<0)
  332.   .MESSAGE
  333.    %HILITE% Error - unable to spawn CHKALL.
  334.             SQL*Forms application tables will NOT be installed.
  335.  
  336.   .SYSCALL -QUIET
  337.    REMPME >NUL
  338.  
  339.   .PAUSE
  340.   .GOTO <INSTEND>
  341.  .ENDIF
  342. # Since we don't have a logical AND, we figure out the flags manually...
  343.  
  344. .IF (%SPAWNRET%>=128)
  345.  .UNKNOWN_ERR=1
  346.  .SPAWNRET=%SPAWNRET%-128
  347. .ELSE
  348.  .UNKNOWN_ERR=0
  349. .ENDIF
  350.  
  351. .IF (%SPAWNRET%>=64)
  352.  .DB_DOWN=1
  353.  .SPAWNRET=%SPAWNRET%-64
  354. .ELSE
  355.  .DB_DOWN=0
  356. .ENDIF
  357.  
  358. .IF (%SPAWNRET%>=32)
  359.  .USAGE_ERR=1
  360.  .SPAWNRET=%SPAWNRET%-32
  361. .ELSE
  362.  .USAGE_ERR=0
  363. .ENDIF
  364.  
  365. .IF (%SPAWNRET%>=16)
  366.  .NEED_CAT=1
  367.  .SPAWNRET=%SPAWNRET%-16
  368. .ELSE
  369.  .NEED_CAT=0
  370. .ENDIF
  371.  
  372. .IF (%SPAWNRET%>=8)
  373.  .FORMS_23=1
  374.  .SPAWNRET=%SPAWNRET%-8
  375. .ELSE
  376.  .FORMS_23=0
  377. .ENDIF
  378.  
  379. .IF (%SPAWNRET%>=4)
  380.  .FULL=1
  381.  .SPAWNRET=%SPAWNRET%-4
  382. .ELSE
  383.  .FULL=0
  384. .ENDIF
  385.  
  386. .IF (%SPAWNRET%>=2)
  387.  .PARTIAL=1
  388.  .SPAWNRET=%SPAWNRET%-2
  389. .ELSE
  390.  .PARTIAL=0
  391. .ENDIF
  392.  
  393. .IF (%SPAWNRET%==1)
  394.  .USER_GOOD=1
  395. .ELSE
  396.  .USER_GOOD=0
  397. .ENDIF
  398.  
  399. # Now, evaluate codes
  400.  
  401. .IF (%USER_GOOD%==0)
  402.  .CLEARSCREEN
  403.  .<PASSWDL>
  404.  .STRINGPROMPT
  405.   PASSWD
  406.   Please enter the current password for the SYSTEM account.
  407.   <PASSWDHELP>
  408.   %PASSWD%
  409.  
  410.  .IF %PASSWD%=="999"
  411.    .GOTO <PASSWDL>
  412.  .ENDIF
  413.  .GOTO <LOOP>
  414. .ENDIF
  415.  
  416. .CORRECT_PARTIAL=0
  417. .IF (%PARTIAL%==1)
  418.  .STRINGPROMPT
  419.   CORRECT_PARTIAL
  420.   It appears that the SQL*Forms Designer tables have been partially
  421.   installed in this database sometime in the past.  Do you wish to
  422.   remove these tables and install the complete set?  Any applications
  423.   stored in these tables will be lost.
  424.   <PARTIAL_HELP>
  425.   1 Remove current tables and reinstall complete set
  426.   2 Leave tables as they are
  427.  
  428.  .IF (%CORRECT_PARTIAL%==1)
  429.   .GOTO <FULL_JUMP>
  430.  .ENDIF
  431.  
  432. .ELSE
  433.  
  434.  .IF (%FULL%==0)
  435.   .<FULL_JUMP>
  436.   .CLEARSCREEN
  437.   .MESSAGE
  438.   %NORMAL% Adding SQL*Forms Designer tables to the database...
  439.  
  440.   .SPAWN
  441.   INSTLOAD SYSTEM/%PASSWD% %ORACLE_HOME%\DBS\IADTABLE.SQL %ORACLE_HOME%\DBS\IADTABLE.LOG
  442.   .IF (%SPAWNRET%!=0)
  443.    .GOTO <NOINTERACT>
  444.   .ENDIF
  445.  
  446.   .SPAWN
  447.   INSTLOAD SYSTEM/%PASSWD% %ORACLE_HOME%\DBS\IADINDEX.SQL %ORACLE_HOME%\DBS\IADINDEX.LOG
  448.   .IF (%SPAWNRET%!=0)
  449.    .GOTO <NOINTERACT>
  450.   .ENDIF
  451.  
  452.   .SPAWN
  453.   INSTLOAD SYSTEM/%PASSWD% %ORACLE_HOME%\DBS\IADVIEW.SQL %ORACLE_HOME%\DBS\IADVIEW.LOG
  454.   .IF (%SPAWNRET%!=0)
  455.    .GOTO <NOINTERACT>
  456.   .ENDIF
  457.  
  458.   .SPAWN
  459.   INSTLOAD SYSTEM/%PASSWD% %ORACLE_HOME%\DBS\IADGRANT.SQL %ORACLE_HOME%\DBS\IADGRANT.LOG
  460.   .IF (%SPAWNRET%!=0)
  461.    .GOTO <NOINTERACT>
  462.   .ENDIF
  463.  
  464.   .ELSE
  465.    .MESSAGE
  466.    %NORMAL% SQL*Forms Designer tables present and verified.
  467.  
  468.   .ENDIF
  469.  .ENDIF
  470.  
  471.  .MESSAGE
  472.   %HILITE% Shutting down the database...
  473.  
  474.  .SYSCALL -QUIET
  475.   SQLDBA SHUTDOWN AUTHORIZATION=%DBA_AUTHORIZATION% >NUL
  476.  
  477.  .ENDIF
  478. .ENDIF
  479.  
  480. .SYSCALL
  481. REMPME >NUL
  482.  
  483. .<INSTEND>
  484. .MESSAGE
  485.  %NORMAL% Updating registration information...
  486.  
  487. .REGISTERFILE
  488.  %PRODUCT_NUMBER% %PRODUCT_NAME%
  489.  %PRODUCT_VERSION%
  490.  <DEINSTALL>
  491.  
  492. .EXIT
  493.  
  494. .<DISK_SPACE_HELP>
  495. %PRODUCT_NAME% requires %DISK_USAGE%00K to install.  There is %FREE_SPACE%00K free on drive
  496. %ORACLE_DISK%:.  You may try to proceed anyway.  Unless you plan to install only a
  497. portion of it or you are reinstalling after an unsuccessful installation,
  498. ORAINST will probably terminate abnormally.
  499.  
  500. .<REINSTALL_HELP>
  501. %PRODUCT_NAME% has an entry in REGISTER.ORA, indicating that it has
  502. been installed previously.  You may either abort this installation and save
  503. the version you have already installed, or you may reinstall and overwrite
  504. the existing version.  Entry in REGISTER.ORA follows.
  505.  
  506. Product:  %PRODUCT%
  507. Version:  %VERSION%
  508.  
  509. .<HELP1>
  510. Certain files are required in order to create your own applications.
  511. If you answer Yes, this install will automatically copy the files
  512. needed to create both SQL*Forms applications and programs that can
  513. be called by those applications (user exits).  It will also create
  514. the files you need to add the application generation tables to your
  515. ORACLE database.
  516.  
  517. .<RUNEXITHELP>
  518. If you have a C compiler you can create programs which can be called by
  519. your SQL*Forms applications.  You must install the corresponding ORACLE
  520. precompiler in order to compile and link these programs successfully.
  521. You can still build and run complex forms without the use of
  522. user exits.
  523.  
  524. .<APPLTABSHELP>
  525. In order to design forms, you must have certain tables installed in your
  526. ORACLE database.  If you have already installed a local database, this
  527. install can automatically create these tables (or update them if they are
  528. from an older version of SQL*Forms).  Choose Yes if you would like these
  529. tables to be automatically created/updated.  If you do not have a local
  530. database installed, or would like to create the tables at a later time,
  531. choose No.
  532.  
  533. .<PASSWDHELP>
  534. This installation procedure needs to know the SYSTEM account's password
  535. in order to install the designer tables.
  536.  
  537. .<PARTIAL_HELP>
  538. Some, but not all, of the tables required by the SQL*Forms designer are
  539. present in your database.  The designer will not work unless all of them
  540. are present.  If you wish to correct this, this install can remove the
  541. tables currently present and replace them with a full set.  Any data in
  542. the tables will be lost.  Alternatively, you can run FORMINS.CMD.
  543.  
  544. .<DEINSTALL>
  545. %ORACLE_HOME%\PBIN\CONVERT.COM
  546. %ORACLE_HOME%\PBIN\GENERATE.COM
  547. %ORACLE_HOME%\PBIN\RUNFORM.COM
  548. %ORACLE_HOME%\PBIN\SQLFORMS.COM
  549. %ORACLE_HOME%\DBS\IADTABLE.LOG
  550. %ORACLE_HOME%\DBS\IADINDEX.LOG
  551. %ORACLE_HOME%\DBS\IADVIEW.LOG
  552. %ORACLE_HOME%\DBS\IADGRANT.LOG
  553.