Access ODBC connection to Teradata

D

DaveK

I'm trying to connect to a Teradata data source through ODBC in Access using
VB code. Does anyone have sample code to build the connection string
necessary to make this work?
 
R

RD

I'm trying to connect to a Teradata data source through ODBC in Access using
VB code. Does anyone have sample code to build the connection string
necessary to make this work?

First, make sure your computer has the proper driver:
http://www.teradata.com/t/page/130536


I found some good stuff at:
http://www.able-consulting.com/tech.htm


For ADO:

oConn.Open "Provider=Teradata;" & _
"DBCName=MyDbcName;" & _
"Database=MyDatabaseName;" & _
"Uid=myUsername;" & _
"Pwd=myPassword"

You'll need an "account" on the teradata server. Back when I was
doing this, the DBA created a special account to be used in the
connection string used by all of the computers that needed access.

HTH,
RD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top