Table of Contents

Search

  1. Preface
  2. Backing Up and Restoring the Data Vault
  3. Configuring Centera as a Remote Data Vault Store
  4. Configuring Data Archive for a Legacy Source Using Legacy Adapters
  5. Data Archive Seamless Access for PeopleSoft
  6. Data Archive Transaction Restore API
  7. Dropping and Truncating Partitions in Data Archive
  8. High Availability Configuration for the Data Archive and File Archive Service Versions 6.1 to 6.3
  9. 0955-High Availability Configuration for the Data Vault Version 6.4 and Later
  10. How to Create Business Rules to Archive and Purge Transactional Data
  11. How to Uninstall Data Archive 5.1
  12. How to Uninstall Data Archive 5.3
  13. How to Use Scripts to Change Database User Passwords in the ILM Repository
  14. IBM DB2 Database Connectivity and Setup for Data Archive
  15. Installing Data Visualization
  16. Integrating Third-Party Schedulers in ILM Engine
  17. Parallel Processing in Data Archive
  18. Seamless Access Configuration for Siebel Applications
  19. Seamless Access Setup for Oracle E-Business Suite
  20. Using the Data Vault Service JDBC Driver to Connect to the Data Vault
  21. Using Multiple Engines in an ILM Environment
  22. Using PowerExchange ODBC Connections in a Data Archive Retirement Project
  23. Discovering Foreign Key Relationships in Enterprise Data Manager

Data Archive How-To Guide

Data Archive How-To Guide

Connecting to the Data Vault

Connecting to the Data Vault

Use an ODBC data source for the JDBC connection to the Data Vault.
The class name for the JDBC driver is
nucleus.Driver
.
  1. Create an ODBC data source for the Data Vault.
    On Windows, you can use the ODBC Data Source Administrator to set up a data source. On UNIX, set up a data source in the odbc.ini.
  2. Include the DSN in the JDBC URL:
    jdbc:nucleus://<
    DSN
    >
    DSN
    is the name of the ODBC data source to use to connect to the Data Vault.
  3. Add an entry for the connection to the Data Vault Service configuration file
    nucleus.ini
    .
The following sample code shows how to use the Java DriverManager class to connect to a database in the Data Vault with the JDBC driver:
String db_connect_string = "jdbc:nucleus://FAS"; String db_userid = "dba"; String db_password = "dba"; Class.forName("nucleus.Driver"); conn = DriverManager.getConnection(db_connect_string, db_userid, db_password);
For this example, the odbc.ini and nucleus.ini files have the following entries :
odbc.ini
[FAS] Driver=/usr/FAS/odbc/libsando.so Description = Informatica ILM FAS 6.1 ODBC Driver Connection = fas Database = Archive_ SEP_2012 UID = DBA
nucleus.ini
[Connection fas] HOST=localhost PORT=8500

0 COMMENTS

We’d like to hear from you!