Hello all,
Thanks in advance for reading this.
I am trying to pull data from Teradata and load it into MySQL without hitting the disk.
I am currently doing it with a perl script and connecting BTEQ to LOAD DATA INFILE with a named pipe in linux.
Now I am trying to convert this perl script into java so that I can integrate it with our other ETL processes and would also like to get away from manipulating command line executables. Now I know I can do LOAD DATA INFILE through the MySQL JDBC driver and read from a pipe. What I have yet to figure out is how to read the data, using a pipe (or PipedOutputStream), from Teradata.
Can anyone point me in the right direction? What tool or library should I be using here?
Once I figure this out, I will be sure to come back and post my results.
Thanks again,
Dan