Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Jdbc - Driver and jdbc-Url

Status
Not open for further replies.

tlongthuan

Programmer
Dec 12, 2001
1
DE
Hi,

I work for the first time with teradata and try create a connect to the teradata Warehouse via EAI TIBCO.
In order to do so, I need to define the jdbc-url and driver.
For example for Oracle I use:

jdbc-url : "jdbc:eek:racle:thin:mad:host:port:instance_name
jdbc-Driver : oracle.jdbc.driver.OracleDriver

Can anybody tell me how the two strings looks like for Teradata?
 
Hi,
according to the JDBC manual


click on JDBC then on the version you have.

The manual can be reviewed for a complete list of Params.

-----------------

Enter the following URL to select a Teradata JDBC Type 2 Driver connection to a Teradata RDBMS:

//jdbc:teradata//DatabaseServerName/Param1,Param2,...

Enter the following URL to select a Teradata JDBC Type 3 Driver connection to a Teradata RDBMS:

//jdbc:teradata//GatewayServerName:portNumber/DatabaseServerName/Param1,Param2,...


-----------------


for the driver name.....

4 Use the following statement to load and register the Teradata JDBC Driver:

Class.forName(“com.ncr.teradata.TeraDriver”);



Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top