Reputation: 1
I have created tables in dashDB on IBM Bluemix and populated those tables with data. Now I need to connect my cloud-based dashDB with the respective feeding DB2 system (V9.7) which sits behind a corporate firewall. How can I establish the connection and set up a daily feed (replication).
Upvotes: 0
Views: 621
Reputation: 11
Beside using another product, you can use db2 itself.
You can catalog the dashDB on your DB2 feeding system, then do export and insert there(within your v9.7 db2).
e.g.
db2 catalog tcpip node MYDASH remote DASHSERVER server 50000 db2 catalog db BLUDB as BLUDB at node MYDASH
then export insert in another script can be controlled by cronjob...
Upvotes: 1
Reputation: 391
You could set up the IBM Secure Connector:
Here is some demo video how to do this via the Bluemix "Cloud Integration" service:
This should enable you to use DataWorks to pull data from on premise.
Alternatively you could set up an on premise ETL server, such as DataStage to pull from the enterprise system and push up to dashDB in the cloud.
Upvotes: 0