I'm trying to write VBA code that will allow me to run a macro in Microsoft Excel 2007 that connects to Teradata SQL assistant (version 13.10), runs SQL (it says ODBC, if that is meaningful), and brings back the results to Excel. I've spent a few hours looking around on the internet for how to do this and discovered that it is done via connection strings. Unfortunately, I am a bit out of my depth with this, and don't know how to create a connection string that properly connects to the SQL database. I've developed the following VBA code:
Sub RunSQL()
Dim UserID As String
Dim Pass As String
UserID = InputBox(Prompt:="Enter your User ID.")
Pass = InputBox(Prompt:="Enter your Password.")
Dim strConn As String
strConn = "Provider=SQLOLEDB.1;Persist Security Info=True;Data Source=OSWSQLP01;Integrated security=SSPI;Initial Catalog=AEDWPROD;User ID ="& UserID & ";Password="& Pass
Dim Query As String
Query = "select * from DB_WRK_ACT.CERF_datevar"
Dim rs As New ADODB.Recordset
rs.Open Query, strConn
Sheet1.Range("A1").CopyFromRecordset rs
'
End Sub
However, when I run this code I get the error message that login failed for my user ID (at the rs.Open step). This leads me to believe that my connection string is close to being correct, but is either missing something or using the incorrect provider and/or data source. I'm not experienced enough to identify what I'm missing, and I stole the provider/data source from someone else's excel file and am not sure they are correct.
My questions are:
1. Is my connection string structured correctly, or am I missing/including something I shouldn't be?
2. How can I find out what the correct provider/data source fields to use are? (e.g. if SQLOLEDB.1 is the correct provider, how would I find that out for myself?
Thank you!