	***************************************
	INSTCAT files for Access 1.0  - 6/14/93
	***************************************

This file contains the following files:

  INSTCAT.SQL	-  03-04-93
  INSTCAT.48	-  10-22-92
  README.TXT	-  06-14-93

The INSTCAT.SQL is the script that creates Catalog Stored Procedures 
on a Microsoft SQL Server or Sybase SQL Server versions before 4.8.

The INSTCAT.48 is for versions of Sybase of 4.8 and higher.

---------------------------------------------------------------------
If INSTCAT.SQL hasn't been properly installed, the following error
message is displayed while you're attaching an SQL table in Microsoft
Access:

   [Microsoft][ODBC SQL Server Driver] The ODBC catalog stored
   procedures installed on your server <servername> are version
   xx.xxxx; version xx.xx.xxxx is required to ensure proper 
   operation. Please contact your system administrator.

To install the catalog stored procedures, use the SQL Server
ISQL (Interactive SQL) tool. You can run the ISQL tool from the
MS-DOS or OS/2 command line.

(NOTE: Don't use the SAF utility provided with Microsoft SQL
Server. Microsoft SAF for MS-DOS and OS/2 is limited to 511
lines of code in an SQL script.)


The syntax to install INSTCAT.SQL using ISQL is:

   isql /U <sa loginname> /n /P <password> /S <SQL servername> 
   /i <drive:\path\INSTCAT.SQL> /o <drive:\path\outputfilename>

(NOTE: Enter the preceding two lines as one line at the command
prompt, and don't include the angle brackets < >.)

/U   Login name for the system administrator.
/n   Eliminates line numbering and prompting for user input.
/P   Password (case sensitive) used for the system administrator.
/S   Name of the driver to set up.
/i   Provides the drive and fully qualified path for INSTCAT.SQL.
/o   Provides ISQL with an output file destination for results,
     including errors.

Example:
  isql /U sa /n /P skier /S DUMMY_SERVER /i D:\SQL\INSTCAT.SQL /o 
  D:\SQL\OUTPUT.TXT

