How To, Information Delivery, SAP Business Objects

SAP Business Objects Data Services, SQL Server Express and Java 6

This articles looks at configuring the following components,

  • SAP Business Objects Data Services XI3.2
  • SQL Server Express 2005
  • Tomcat 5.5
  • JDK 1.6

The JDK 1.6 is not supported and indeed when trying to configure the Management Console to connect to a repository created in SQL Server Express 2005 we get the following error,

Java Runtime Environment (JRE) version 1.6 is not supported by this driver. Please use the JDBC 4 driver (sqljdbc4.jar) instead.

Solution

As the error suggests we need to upgrade the SQL Server JDBC driver to use a Type 4 JDBC driver.  The instructions below assume you have already setup a Data Integrator repository in SQL Server and also you are not using windows authentication to connect to this repository.

To install and use a Type 4 JDBC driver,

  1. Download Microsoft SQL Server JDBC Driver 2.0 from Microsoft. Note the previous versions of this driver are also Type 4 JDBC drivers but we might as well use the latest version.
  2. Save the downloaded file sqljdbc_<version>_enu.exe to a temporary directory and run the executable.
  3. Enter an install directory when prompted; it is recommended that you unpack this zip file in %ProgramFiles% with the default directory “Microsoft SQL Server JDBC Driver”.
  4. Copy the sqljdbc4.jar file from
    %Program Files%Microsoft SQL Server JDBC Driversqljdbc_2.0enu

    to

    %Tomcat%apache-tomcat-5.5.26webappsDataServicesWEB-INFlib

    where %Tomcat% is your tomcat installation directory.

  5. Rename the existing sqljdbc.jar (without a “4” in the name) to sqljdbc.jar.old or move it to a different folder.

Before restarting Tomcat to load the new driver we need to check our SQL Server configuration.

  1. Launch SQL Server Configuration Manager.
  2. Expand SQL Server 2005 Network Configuration.
  3. SQL Server Configuration Manager
    Screenshot of SQL Server Configuration Manager

  4. Double click TCP/IP protocol in right hand panel
  5. TCPIP configuration in SQL Server
    TCPIP configuration dialog in SQL Server

  6. Enable the protocol if it is not enabled
  7. Select the IP Addresses tab and under IPALL make a note of the port number next to TCP Dynamic Ports. In the screenshot above the port number is 1028.
  8. Save and close the TCP/IP properties window

If you had to enable the TCP/IP protocol you’ll need to restart SQL Server,

  1. Select SQL Server 2005 Services in left hand panel
  2. In turn, select both entries on the right and click the restart icon

Restart Tomcat and when started launch the Management Console. Now we can add the Data Integrator repository to the console,

  1. After you have logged in select Administration from the main screen
  2. From the left hand menu expand Management and select Repositories. Cick Add
  3. SAP Business Objects Data Services Management Console
    Defining a repository connection in SAP BusinessObjects Data Services Management Console

  4. Enter a repository name. This can be anything you like and it is used to identify the repository in the management console.
  5. Under Database Type select Microsoft_SQL_Server
  6. Leave windows authentication unchecked
  7. Enter a machine name: <servername>SQLEXPRESS where <servername> is the name of the server where SQL Server Express has been installed.
  8. Enter a database port: 1028  Note, this isn’t the usual port used by SQL Server which is 1433 but is the port that we noted above when configuring TCP/IP for SQL Server.
  9. For database name enter the name of your Data Integrator repository database
  10. and finally enter the required username and password.
  11. Click Test and if it is working OK click apply.

2 thoughts on “SAP Business Objects Data Services, SQL Server Express and Java 6”

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s