To integrate the Avaya IR system with an MS SQL Server 2000 database, you must install the JDBC driver for MS SQL Server 2000.
To download the JDBC driver for MS SQL Server 2000:
The package information page is displayed. It provides links to the available drivers.
If you cannot directly download the file to the Avaya IR system, download it to a temporary location. Then transfer the file (using the ftp
command or some other method) to the /tmp directory on the Avaya IR system.
To unpack and copy the driver files to the required location on the Solaris system:
cd /tmp
to go to the directory that contains the .tar file. mkdir install_mssql
to create a directory for the contents of the .tar file. mv mssqlserver.tar install_mssql
to move the .tar file into the install_mssql directory. cd install_mssql
to go to the install_mssql directory. tar xvf mssqlserver.tar
to unpack the mssqlserver.tar file. ./install.ksh
to run the installation script.The installation script runs and displays the license agreement when you press Enter.
/tmp/install_mssql
and press Enter. cd lib
to go to the /tmp/install_mssql/lib directory. cp *.jar /vs/java/jdbc/lib
to copy the .jar files to /vs/java/jdbc/lib directory of the Avaya IR system. ls /vs/java/jdbc/lib
to display the lib directory contents and to verify that the three ms*.jar files were successfully copied. cd /tmp
to go to the temp directory, and enter rm -rf /tmp/install_mssql
to remove the install_mssql directory and its contents.To install the MS SQL Server 2000 JDBC driver:
/etc/init.d/tomcat stop
The system displays messages indicating that the Tomcat engine is stopped.
/etc/init.d/tomcat start
The system displays messages indicating that the Tomcat engine is started.
The JDBC Administration - Edit screen for the selected DIP is displayed.
Custom
.com.microsoft.jdbc.sqlserver.SQLServerDriver
.jdbc:microsoft:sqlserver://
domain_name
:1433;databaseName=
yourdatabasename
where domain_name
is the domain name for the MS SQL Server 2000 server, and yourdatabasename
is the filename of the database.Microsoft SQL Server
.