Tagged Questions
0
votes
1answer
78 views
Is it possible to execute Teradata FastLoad or MultiLoad scripts through VBA?
I am able to run Normal DML scripts (INSERT, UPDATE & DELETE) scripts through VBA ODBC connection.
But Is it possible to run FLOAD or MLOAD scripts through VBA ODBC ?
I have large set of data ...
0
votes
1answer
186 views
Connect to teradata from VBA and run codes parallerly
We often have Excel connect to a teradata database and run some sql for various reports/models we produce. If I'm right this will always connect and 'Execute' as per a standard query run in Queryman.
...
0
votes
3answers
991 views
Define a VBA Recordset as String
When we define a record set in VBA & read the data from database, recordset converts its datatype to Table's column data type.
Dim rs as adobb.RecordSet
Set rs = CmdSqlData.Execute() ' After ...
0
votes
1answer
2k views
Query database through Excel VBA
I am a beginner in Excel VBA. I want to query data from Teradata database and give the output into the rows of an excel sheet. When i write the below code:
Private Sub CommandButton1_Click()
Dim ...
0
votes
2answers
409 views
import query which is generated in excel into teradata
I have generated a query in the excel by using macros now "i want to import these queries into teradata and compile it and display the result Automatically".Can anyone help me with this?
0
votes
1answer
2k views
How to insert data from an excel sheet into a database table?
I need to insert the data from an excel sheet into a teradata table.
and I need this to be done using a MACRO.
I have data in an excel sheet like
COL1 COL2 COL3 COL4
1 2 3 4
2 5 ...