I have a particular use case wherein we need data from DB2 running on z/OS into a relational database for further reporting/analytics use cases.
I've gone through the below post/link where it seems JDBC driver of DB2 can be used to read the data in readable format for RDBMS systems.
We do have other options too wherein we can export the DB2 tables data within Mainframe and FTP the files out, and then convert them using Manually coded options, like the ones below. However, these are not our preferred options over JDBC.
Java program to convert EBCDIC to ASCII
Python program to convert EBCDIC to ASCII
This question is to further understand the implications of using a JDBC Driver to read data from DB2 running on z/OS and loading the data into an RDBMS.
For the sake of the discussion, we can assume that I am trying to load the data into a BigQuery dataset/table in GCP. We are not looking for custom built or open source solutions for this purpose.
For any queries, please let me know.
Thanks!!!