home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 November / VPR9611B.ISO / vabasic / ntsvr.exe / INSTALL.TXT next >
Text File  |  1996-07-30  |  23KB  |  637 lines

  1. ============================================================
  2.                   IBM VISUALAGE FOR BASIC
  3.                         INSTALL.TXT
  4. ============================================================
  5.  
  6. Contents of this File:                                 Line
  7.                                                        ----
  8. Copyright and Trademark Information For This File        20
  9. Installing VisualAge for Basic on AIX                    50
  10. Installing VisualAge for Basic on OS/2                  205
  11. Installing VisualAge for Basic on Win NT or Win 95      270
  12. Creating SP catalog on OS/2, Win NT, or Win 95          290
  13. Installing VisualAge for Basic Stored Procedure VBX     360
  14. VisualAge for Basic Hardware and Software Requirements  400
  15. VisualAge for Basic License Agreement                   550
  16.  
  17.  
  18. ============================================================
  19.      COPYRIGHT AND TRADEMARK INFORMATION FOR THIS FILE
  20. ============================================================
  21.  
  22. Licensed Materials -- Property of IBM.
  23.  
  24. (C) Copyright International Business Machines Corporation
  25. 1996.  All Rights Reserved.
  26.  
  27. Note to U.S.  Government Users -- Documentation related to
  28. Restricted Rights -- Use, duplication, or disclosure is
  29. subject to restrictions set forth in GSA ADP Schedule
  30. Contract with IBM Corporation.
  31.  
  32. AIX, AIX/6000, DB2, DB2/6000, IBM, OS/2 and VisualAge are
  33. trademarks of International Business Machines Corporation.
  34.  
  35. Other company, product, and service names, which may be
  36. denoted by a double asterisk (**), may be trademarks or
  37. service marks of others.
  38.  
  39. Microsoft, Windows, and the Windows 95 logo are trademarks
  40. or registered trademarks of Microsoft Corporation.
  41.  
  42. For license information, and copyright information related
  43. to third- party code contained in IBM VisualAge for Basic,
  44. please see the file NOTICES.TXT in the directory where you
  45. installed VisualAge for Basic.
  46.  
  47.  
  48. ============================================================
  49.           INSTALLING VISUALAGE FOR BASIC ON AIX
  50. ============================================================
  51.  
  52. In the steps below:
  53.    $HOME       =  home directory of the database instance
  54.    $SQLLIBDIR  =  sqllib/function directory
  55.  
  56.  
  57. ============================================================
  58. Installing VisualAge for Basic Server on AIX
  59.  
  60.   1. Log on to AIX as database instance owner.
  61.  
  62.   2. Execute db2profile
  63.  
  64.   3. Change directory to $HOME/$SQLLIBDIR
  65.  
  66.   4. If you do not already have the gunzip exec on your
  67.      system, download it from
  68.         http://astro.princeton.edu:85/gzip.info
  69.  
  70.   5. Download the binary compressed tar file of the
  71.      VisualAge for Basic server image (vabasicx.svr.tar.gz)
  72.      from the World Wide Web.
  73.  
  74.   6. Unzip this file by entering:
  75.         gunzip vabasicx.svr.tar.gz
  76.      This will give you the file vabasicx.svr.tar
  77.  
  78.   7. Untar this file by entering:
  79.         tar -xvf vabasicx.svr.tar
  80.  
  81.   8. The file $HOME/$SQLLIBDIR/CONFIG.VW has the single line
  82.         VWDIR=/u/inst2/sqllib/function/vwdir
  83.      Change /u/inst2 to $HOME (you DB2 Administrator home
  84.      directory).  For example, if your $HOME directory is
  85.      /u/inst, change the file to:
  86.         VWDIR=/u/inst/sqllib/function/vwdir
  87.  
  88.   9. Update your LIBPATH by adding:
  89.         $HOME/sqllib/function
  90.  
  91.  10. If you want to run the command line Basic
  92.      Interpreter (basI), stored procedure builder (spbuild),
  93.      or user-defined function builder (udfbuild), then do
  94.      the following steps:
  95.  
  96.      A. Ensure that your $PATH environment variable includes
  97.         /usr/bin
  98.      B. Enter:  su root  (root authority required)
  99.      C. Enter:  cd usr/bin
  100.      D. Enter these three symbolic link commands:
  101.            ln -s $HOME/sqllib/function/basI      .
  102.            ln -s $HOME/sqllib/function/spbuild   .
  103.            ln -s $HOME/sqllib/function/udfbuild  .
  104.  
  105.  
  106. ============================================================
  107. DB2-related tasks on AIX
  108.  
  109.   1. Run db2profile for the appropriate database instance.
  110.  
  111.   2. Do the steps below as database instance owner for
  112.      each database created:
  113.  
  114.      A. Connect to the database.
  115.  
  116.      B. Change to the $HOME/sqllib/misc directory.
  117.  
  118.      C. Run the script file to create the stored procedure
  119.         catalog by entering:  db2 -vtf STORPROC.DDL
  120.  
  121.      D. Grant users who can do remote build the authority to
  122.         update the catalog by entering one of the following
  123.         commands:
  124.  
  125. db2 "GRANT ALL PRIVILEGES ON TABLE DB2CLI.PROCEDURES to PUBLIC"
  126. db2 "GRANT ALL PRIVILEGES ON TABLE DB2CLI.PROCEDURES to userid"
  127.  
  128.   3. To run the VisualAge for Basic samples, create a
  129.      SAMPLES database by entering:
  130.         $HOME/sqllib/misc/db2sampl
  131.  
  132.   4. CLI applications cannot call to entry points in a
  133.      shared library on AIX if the library is in an archived
  134.      format, that is, if its name ends in "a".  However,
  135.      VisualAge for Basic CAN call to entry points in a
  136.      non-archived library or in a  .o  file.
  137.  
  138.      A. To extract the object file from a shared library,
  139.         create a file named  shr.o  by using the ar command:
  140.            ar vx libdb2.a
  141.  
  142.      B. Then rename  shr.o  to  libdb2.o  by using the  mv
  143.         command:  mv shr.o libdb2.o
  144.  
  145.   5. VisualAge for Basic makes the archived library for
  146.      DB2 for AIX Version 2.1.1 available as  libdb2.o  in
  147.      the $HOME/$SQLLIBDIR directory.  If you are using a
  148.      different version of DB2 for AIX, create your own
  149.      libdb2.o  by using the  ar  command and renaming
  150.      shr.o  to  libdb2.o
  151.  
  152.   6. For DB2-related questions, see the DB2 for AIX
  153.      Installation Guide or the DB2 for AIX Reference.
  154.  
  155.  
  156. ============================================================
  157. Removing VisualAge for Basic Server from AIX
  158.  
  159.   1. Change directory to $HOME/$SQLLIBDIR
  160.  
  161.   2. Enter:  removeserver
  162.  
  163.   3. To delete the removeserver command, enter:
  164.         rm removeserver
  165.  
  166.  
  167. ============================================================
  168. VisualAge for Basic Readme Files and Directories on AIX
  169.  
  170. During installation, VisualAge for Basic creates the
  171. following readme files in $HOME/$SQLLIBDIR:
  172.  
  173.    INSTALL.TXT     Installation information (the file you
  174.                    are reading)
  175.    NOTICES.TXT     Copyright information
  176.    README.1ST      Readme file
  177.  
  178. During installation, VisualAge for Basic creates the
  179. following files and directories under $HOME/$SQLLIBDIR:
  180.  
  181.    CONFIG.VW       Root directory for config subdirectory
  182.    db2spla         DLL provided by VisualAge for Basic
  183.    libdb2.o        Unarchived libdb2.a
  184.    libgenAdapt.a   Server remote build debug library
  185.    libgenAdapt2.a  Server run-time library
  186.    stpsrv          Server remote build file
  187.    spspstub        Server stored procedure stub
  188.    udfxstub        Server user-defined function stub
  189.    basI            Command line Basic Interpreter for client
  190.    spbuild         Command line stored procedure builder
  191.                    for client
  192.    udfbuild        Command line user-defined function
  193.                    builder for client
  194.    vabasicx
  195.       include      Server include files
  196.    vwdir
  197.       config       Configuration files
  198.       biudf        Financial user-defined functions
  199.    removeserver    Command to deinstall VisualAge for Basic
  200.                    server
  201.  
  202.  
  203. ============================================================
  204.            INSTALLING VISUALAGE FOR BASIC ON OS/2
  205. ============================================================
  206.  
  207. IMPORTANT:  Install DB2 for OS/2 before installing VisualAge
  208. for Basic on the server machine.
  209.  
  210.   1. Download as a binary file the self-extracting file from
  211.      the World Wide Web:
  212.  
  213.      A. For VisualAge for Basic client:
  214.  
  215.      -- If you have high bandwidth and can download big
  216.         files, download os2clnt.exe.
  217.  
  218.      -- If you have low bandwidth and can only download
  219.         smaller files, download os2clnt1.exe, os2clnt2.exe,
  220.         and os2clnt3.exe.
  221.  
  222.      B. For VisualAge for Basic server, download os2svr.exe.
  223.  
  224.   2. Open an OS/2 window and use the OS/2 command line for
  225.      steps 3-5.
  226.  
  227.   3. Create a temporary directory and place the self-
  228.      extracting (.exe) file(s) in it.  If you're installing
  229.      both the client and server components, create two
  230.      temporary directories and place one self-extracting
  231.      file in each one.
  232.  
  233.   4. Unzip the file to create the installation files:
  234.  
  235.      A. For VisualAge for Basic client,
  236.  
  237.      -- If you downloaded the one large file, enter:
  238.            os2clnt
  239.  
  240.      -- If you downloaded the three smaller files, enter:
  241.            os2clnt1, then os2clnt2, then os2clnt3
  242.  
  243.      B. For VisualAge for Basic server, enter:  os2svr
  244.  
  245.   5. In the temporary directory where you unzipped the
  246.      files, enter:  install
  247.  
  248.   6. Continue with the installation and follow the
  249.      instructions that appear on your screen.
  250.  
  251.   7. After installation is complete, shut down OS/2, reboot
  252.      your machine, and delete all files in the temporary
  253.      directory.
  254.  
  255.   8. Start VisualAge for Basic by double-clicking on the
  256.      VisualAge for Basic icon on the OS/2 desktop, or by
  257.      entering  vw  on the OS/2 command line.
  258.  
  259.   9. To view the VisualAge for Basic general online help,
  260.      select the Help pull-down or press F1 from any product
  261.      window.
  262.  
  263.  10. To view the online books, open the VisualAge for Basic
  264.      folder, then open the Information folder, then
  265.      double-click on the Programming Guide or the Data
  266.      Access Guide.
  267.  
  268.  
  269. ============================================================
  270. CREATING STORED PROCEDURE CATALOG ON OS/2, WIN NT, OR WIN 95
  271. ============================================================
  272.  
  273.   1. Connect to the database.
  274.  
  275.   2. Change to the \sqllib\misc directory, where sqllib
  276.      is the root directory where DB2 is installed.
  277.  
  278.   3. Run the script file to create the stored procedure
  279.      catalog by entering:  db2 -vtf STORPROC.DDL
  280.  
  281.   4. Grant users who can do remote build the authority to
  282.      update the catalog by entering one of the following
  283.      commands:
  284.  
  285. db2 "GRANT ALL PRIVILEGES ON TABLE DB2CLI.PROCEDURES to PUBLIC"
  286. db2 "GRANT ALL PRIVILEGES ON TABLE DB2CLI.PROCEDURES to userid"
  287.  
  288.   5. Enter:  connect reset
  289.  
  290.  
  291. ============================================================
  292.  INSTALLING VISUALAGE FOR BASIC ON WINDOWS NT OR WINDOWS 95
  293. ============================================================
  294.  
  295. Important: the client code and install procedure is the same
  296. on Windows NT and Windows 95.
  297.  
  298.   1. Download as a binary file the self-extracting file from
  299.      the World Wide Web:
  300.  
  301.      A. For VisualAge for Basic client,
  302.  
  303.      -- If you have high bandwidth and can download big
  304.         files, download ntclnt.exe.
  305.  
  306.      -- If you have low bandwidth and can only download
  307.         smaller files, download ntclnt1.exe, ntclnt2.exe,
  308.         and ntclnt3.exe.
  309.  
  310.      B. For VisualAge for Basic server, download ntsvr.exe
  311.  
  312.   2. Open a Windows NT or Windows 95 session and use the
  313.      command line for steps 3-4.
  314.  
  315.   3. Create a temporary directory and place the self-
  316.      extracting (.exe) file(s) in it.  If you're installing
  317.      both the client and server components, create two
  318.      temporary directories and place one self-extracting
  319.      file in each one.
  320.  
  321.   4. Unzip the file to create the installation files:
  322.  
  323.      A. For VisualAge for Basic client,
  324.  
  325.      -- If you downloaded the one large file, enter:
  326.            ntclnt
  327.  
  328.      -- If you downloaded the three smaller files, enter:
  329.            ntclnt1, then ntclnt2, then ntclnt3
  330.  
  331.      B. For VisualAge for Basic server, enter:  ntsvr
  332.  
  333.   5. In the Windows NT or Windows 95 File Manager, double-
  334.      click on setup.exe in each temporary directory.
  335.  
  336.   6. Continue with the installation and follow the
  337.      instructions that appear on your screen.
  338.  
  339.   7. After installation is complete, reboot your machine
  340.      and delete all files in the temporary directory.
  341.  
  342.   8. Restart Windows NT or Windows 95.
  343.  
  344.   9. Start VisualAge for Basic by double-clicking on the
  345.      VisualAge for Basic icon on the Windows NT or Windows
  346.      95 desktop.
  347.  
  348.  10. To view the VisualAge for Basic general online help,
  349.      select the Help pull-down or press F1 from any product
  350.      window.
  351.  
  352.  11. To view the online books, or the online help for the
  353.      stored procedure OLE custom control (SP OCX), open
  354.      the VisualAge for Basic folder, then click on the
  355.      Programming Guide, Data Access Guide, or SP OCX icon.
  356.  
  357.  12. Refer to the section above, "Creating Stored Procedure
  358.      Catalog on OS/2, Windows NT, or Windows 95."
  359.  
  360.  
  361. ============================================================
  362.     INSTALLING STORED PROCEDURE VBX/OLE ON WINDOWS 3.1
  363. ============================================================
  364.  
  365.   1. Download as a binary file the self-extracting file
  366.      winvbx.exe from the World Wide Web.
  367.  
  368.   2. Open a Windows or Win-OS/2 session and use the command
  369.      line for steps 3-4.
  370.  
  371.   3. Create a temporary directory and place the self-
  372.      extracting file in it.
  373.  
  374.   4. Unzip the file to create the installation files by
  375.      entering:  winvbx
  376.  
  377.   5. In the Windows File ==> Run entry field, enter:
  378.      c:\temp\install where c:\temp is the drive and
  379.      directory where the file was unzipped.
  380.  
  381.   6. After the installation screen appears, select VBX/OLE
  382.      support.
  383.  
  384.   7. Continue with the installation and follow the
  385.      instructions that appear on your screen.
  386.  
  387.   8. After installation is complete, shut down Windows,
  388.      reboot your machine, and delete all files in the
  389.      temporary directory.
  390.  
  391.   9. Restart Windows.
  392.  
  393.  12. To learn how to register and use the Stored Procedure
  394.      VBX/OLE controls, start by reading the SP VBX/OLE Help
  395.      in the VisualAge for Basic folder.
  396.  
  397.  
  398. ============================================================
  399.    VISUALAGE FOR BASIC HARDWARE AND SOFTWARE REQUIREMENTS
  400. ============================================================
  401.  
  402.  
  403. ============================================================
  404. VisualAge for Basic OS/2 Client
  405.  
  406. Hardware Requirements
  407.  
  408.   -- 486 processor (or higher)
  409.   -- 24 MB of RAM
  410.   -- 30 MB of hard disk space (download size = 27 MB)
  411.  
  412. Software Requirements
  413.  
  414.   -- OS/2 Version 3.0
  415.  
  416.   -- If you are installing VisualAge for Basic with the
  417.      DB2 Support option, then you also need to install DB2
  418.      SDK for OS/2 Version 2.1 or later, using either NetBIOS
  419.      or TCP/IP communications.  For information on DB2
  420.      communications requirements, see:
  421.         http://www.software.ibm.com/data/db2/db2v2.html.
  422.  
  423.   -- If you plan to use OpenDoc parts, you must install OS/2
  424.      Fixpack 17.  You can download OpenDoc and Fixpack 17
  425.      from:   http://www.software.ibm.com/clubopendoc
  426.  
  427.   -- If your OS/2 client will connect to an AIX server, and
  428.      you plan to use the VisualAge for Basic Remote
  429.      Debugging Facility to debug stored procedures and
  430.      user-defined functions on the AIX server, then you need
  431.      to install the PMX X-Server component of TCP/IP on the
  432.      client.
  433.  
  434.  
  435. ============================================================
  436. VisualAge for Basic Windows NT or Windows 95 Client
  437.  
  438. Hardware Requirements
  439.  
  440.   -- 486 processor (or higher)
  441.   -- 24 MB of RAM
  442.   -- 30 MB of hard disk space (download size = 21 MB)
  443.  
  444. Software Requirements
  445.  
  446.   -- Microsoft Windows NT Version 3.51 or Windows 95.
  447.  
  448.   -- If you are installing VisualAge for Basic with the
  449.      DB2 Support option, then you also need to install DB2
  450.      SDK for Windows Version 2.1 or later, using either
  451.      NetBIOS or TCP/IP communications.  For information on
  452.      DB2 communications requirements, see:
  453.         http://www.software.ibm.com/data/db2/db2v2.html
  454.  
  455.   -- If your Windows NT or Windows 95 client will connect to
  456.      an AIX server, and you plan to use the VisualAge for
  457.      Basic Remote Debugging Facility to debug stored
  458.      procedures and user-defined functions on the AIX
  459.      server, then you also need to install a PC X-Server
  460.      product.
  461.  
  462.  
  463. ============================================================
  464. VisualAge for Basic Stored Procedure VBX and OCX
  465.  
  466. Hardware Requirements
  467.  
  468.   -- 486 processor (or higher)
  469.   -- 16 MB of RAM
  470.   -- 2 MB of hard disk space (download size = 1 MB)
  471.  
  472. Software Requirements
  473.  
  474.   -- For VisualAge for Basic Stored Procedure VBX: Microsoft
  475.      Windows Version 3.1
  476.  
  477.   -- For VisualAge for Basic Stored Procedure OCX:
  478.      -- Microsoft Windows NT Version 3.51 or Windows 95
  479.      -- Microsoft Visual Basic** Version 4.0
  480.  
  481.   -- DB2 SDK for Windows Version 2.1 or later, using
  482.      either NetBIOS or TCP/IP communications.  For
  483.      information on DB2 communications requirements, see:
  484.         http://www.software.ibm.com/data/db2/db2v2.html.
  485.  
  486.   -- If your Windows client will connect to an AIX server,
  487.      and you plan to use the VisualAge for Basic Remote
  488.      Debugging Facility to debug stored procedures and user-
  489.      defined functions on the AIX server, then you also need
  490.      to install a PC X-Server product.
  491.  
  492.  
  493. ============================================================
  494. VisualAge for Basic AIX Server
  495.  
  496. Hardware Requirements
  497.  
  498.   -- 530 RISC processor (or higher)
  499.   -- 38 MB of hard disk space (download size = 11 MB)
  500.  
  501. Software Requirements
  502.  
  503.   -- AIX Version 3.25 or 4.15
  504.  
  505.   -- DB2 for AIX Version 2.1 or later, using TCP/IP
  506.      communications.  For information on DB2 communications
  507.      requirements, see:
  508.         http://www.software.ibm.com/data/db2/db2v2.html.
  509.  
  510.  
  511. ============================================================
  512. VisualAge for Basic OS/2 Server
  513.  
  514. Hardware Requirements
  515.  
  516.  --  486 processor (or higher)
  517.  --  24 MB of RAM
  518.  --  10 MB of hard disk space (download size = 6 MB)
  519.  
  520. Software Requirements
  521.  
  522.   -- OS/2 Version 2.0, 2.11, or 3.0 (Version 2.0 must
  523.      include CSD 6055 or later)
  524.  
  525.   -- DB2 for OS/2 Version 2.1 or later, using either NetBIOS
  526.      or TCP/IP communications.  For information on DB2
  527.      communications requirements, see:
  528.         http://www.software.ibm.com/data/db2/db2v2.html.
  529.  
  530.  
  531. ============================================================
  532. VisualAge for Basic Windows NT Server
  533.  
  534. Hardware Requirements
  535.  
  536.   -- 486 processor (or higher)
  537.   -- 24 MB of RAM
  538.   -- 10 MB of hard disk space (download size = 4 MB)
  539.  
  540. Software Requirements
  541.  
  542.   -- Microsoft Windows NT Version 3.51
  543.  
  544.   -- DB2 for Windows NT Version 2.1 or later, using either
  545.      NetBIOS or TCP/IP communications.  For information on
  546.      DB2 communications requirements, see:
  547.         http://www.software.ibm.com/data/db2/db2v2.html.
  548.  
  549.  
  550. ============================================================
  551. EVALUATION LICENSE FOR PROGRAMS NOT GENERALLY AVAILABLE
  552. ============================================================
  553.  
  554. IBM VisualAge for Basic
  555.  
  556. PLEASE READ THIS LICENSE AGREEMENT CAREFULLY.  YOU MUST
  557. AGREE TO THE FOLLOWING TERMS AND CONDITIONS BEFORE
  558. DOWNLOADING IBM VisualAge for Basic (the "Software").  IF
  559. YOU DO NOT AGREE TO THESE TERMS, DO NOT DOWNLOAD, INSTALL,
  560. OR USE THE SOFTWARE.
  561.  
  562. NOTICE:  The Software is not released for general
  563. availability and may be modified substantially before such
  564. release.  The Software may not be at a level of performance
  565. or compatibility of generally available IBM products.  In
  566. addition, IBM does not guarantee that the Software will ever
  567. be released for general availability.  ANY APPLICATION
  568. PROGRAMS PROCESSED OR COMPILED WITH THE SOFTWARE DURING THE
  569. EVALUATION PERIOD MAY NOT REMAIN OPERATIONAL WITH THE
  570. SOFTWARE IF IT IS RELEASED FOR GENERAL AVAILABILITY.
  571.  
  572. 1. Ownership and License.
  573.  
  574. The Software is owned by International Business Machines
  575. Corporation or one of its subsidiaries ("IBM") or an IBM
  576. supplier and is copyrighted and licensed, not sold.  The
  577. Software consists of machine-readable instructions,
  578. audio/visual content (such as software documentation) and
  579. related licensed materials.
  580.  
  581. IBM grants you free of charge a non-exclusive,
  582. non-transferable license to download the Software and
  583. install and use it on a reasonable number of client machines
  584. for purposes of testing and evaluation only.  The Software
  585. is not to be used for production purposes.
  586.  
  587. You may copy the Software for backup.  You may not:  1)
  588. copy, merge, distribute, sublicense, lease, or rent the
  589. Software except as specifically permitted by this Evaluation
  590. License; 2) reverse assemble, reverse compile, or otherwise
  591. translate the Software except as specifically permitted by
  592. law without the possibility of contractual waiver.
  593.  
  594. 2. Term and Termination
  595.  
  596. IBM may terminate this Evaluation License, with or without
  597. cause, by providing notice to you.  You may terminate this
  598. Evaluation License at any time by deleting or destroying all
  599. copies of the Software and documentation.  Unless either
  600. party terminates this License at an earlier date, your
  601. license to the Software expires on its release for general
  602. availability.
  603.  
  604. 3. Warranty Disclaimer and Limitation of Liability
  605.  
  606. IBM licenses the Software to you on an "AS IS" basis,
  607. without warranty of any kind.  IBM HEREBY EXPRESSLY
  608. DISCLAIMS ALL WARRANTIES OR CONDITIONS, EITHER EXPRESS OR
  609. IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  610. WARRANTIES OR CONDITIONS OF MERCHANTABILITY AND FITNESS FOR
  611. A PARTICULAR PURPOSE.  The entire risk arising from use of
  612. the Software remains with you.  Some jurisdictions do not
  613. allow for the exclusion or limitation of implied warranties,
  614. so the above limitations or exclusions may not apply to you.
  615.  
  616. IBM WILL NOT BE LIABLE FOR ANY DIRECT DAMAGES OR FOR ANY
  617. SPECIAL, INCIDENTAL, OR INDIRECT DAMAGES OR FOR ANY ECONOMIC
  618. CONSEQUENTIAL DAMAGES (INCLUDING LOST PROFITS OR SAVINGS),
  619. EVEN IF IBM, OR ITS DISTRIBUTOR, HAS BEEN ADVISED OF THE
  620. POSSIBILITY OF SUCH DAMAGES.  IBM will not be liable for the
  621. loss of, or damage to, your records or data, or any damages
  622.  
  623. claimed by you based on a third party claim.  Some
  624. jurisdictions do not allow for the exclusion or limitation
  625. of incidental or consequential damages, so the above
  626. limitations or exclusions may not apply to you.
  627.  
  628. 4. General
  629.  
  630. This Evaluation License is governed by the substantive laws
  631. of the State of New York applicable to agreements fully
  632. executed and performed in New York.
  633.  
  634. After installing the Software, you can view or print a copy
  635. of this Evaluation License from the file NOTICES.TXT in the
  636. directory where you installed the Software.
  637.