	**************************************
	INSTCAT file for Access 1.1  - 6/14/93
	**************************************

This file contains the following files:

  INSTCAT.SQL	-  05-26-93
  README.TXT	-  06-14-93

The INSTCAT.SQL is the script that creates Catalog Stored Procedures 
for all versions of Microsoft & Sybase SQL Server.

---------------------------------------------------------------------
Microsoft Access version 1.1 contains a new version of the 
ODBC stored procedures (found in the INSTCAT.SQL file), 
which must be installed on a SQL Server before you can 
access data from that server. However, the INSTCAT.SQL file 
that comes with version 1.1 can't be used with version 1.0 of 
Microsoft Access. If you have Microsoft Access version 1.0 and 
attempt to attach a table from a database on a SQL Server where 
version 1.1 of the ODBC stored procedures have been installed, 
you will see this error message:

   "'<ownername>.<tablename>' isn't a valid name."

To fix this problem, you should update all of the computers 
on your network to version 1.1 of Microsoft Access and 
install version 1.1 of INSTCAT.SQL on your SQL Servers.

If you have Sybase SQL Server databases, you MUST upgrade 
all users to Microsoft Access 1.1 and use the version 1.1 
INSTCAT.SQL, which contains fixes that are required for 
Sybase SQL Server databases. If you have Microsoft SQL 
Server databases and have a mixture of Microsoft Access 1.0 
and 1.1 installations, you can use the version 1.0 
INSTCAT.SQL until all users are upgraded to Microsoft Access
version 1.1.

The version 1.1 INSTCAT.SQL file is also included with 
Microsoft Visual Basic version 3.0. If you are using this 
version of Visual Basic and want to access SQL Server 
databases from both Visual Basic and Microsoft Access, you 
should either update all of your users to Microsoft Access 
version 1.1 or use the version 1.0 INSTCAT.SQL instead of 
the version supplied with Visual Basic. Visual Basic version
3.0 will work correctly with the version 1.0 INSTCAT.SQL,
except that it will be unable to delete indexes from tables.

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

