I have to insert some data in some SQL Server tables from a select in a DB2 system. It may need some mapping in between select-insert tables as well. The task will have to run frecuently on a linux server (SLES).
At the moment there aren't any tools/utilities in the SLES server to connect to any of the two database systems.
I am not sure if the best way to tackle this would be to do it in bash with the ODBC (or ODBC utilities like unixODBC or iODBC) from both DBMS's or go for a more high level solution in java o python.
If I were for a scripting bash solution, what dependecies would I need?
The program would affect only 4 to 7 tables but with a considerable volume of data. Performance is not critical because the load task will be run at night.