Hi all,
I have my Teradata set up to connect to three different ODBC connections at the same time.
I would like to be able to do select queries joining tables from different ODBC connections.
For example:
select *
from ODBC1.Employee e
join ODBC2.Address a
on e.id = a.id
Someone told me that this may be possible by creating a volatile/GTT tables. In the example above, I create a volatile/GTT table with data from ODBC2, and therefore
↧