gregorychalenko / db-extractor-db2

IBM DB2 extractor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DB2 DB Extractor

Example configuration

{
  "db": {
    "driver": "db2",
    "host": "HOST",
    "port": "PORT",
    "database": "DATABASE",
    "user": "USERNAME",
    "password": "PASSWORD",
    "ssh": {
      "enabled": true,
      "keys": {
        "private": "ENCRYPTED_PRIVATE_SSH_KEY",
        "public": "PUBLIC_SSH_KEY"
      },
      "sshHost": "PROXY_HOSTNAME"
    }
  },
  "tables": [
    {
      "name": "employees",
      "query": "SELECT * FROM employees",
      "outputTable": "in.c-main.employees",
      "incremental": false,
      "enabled": true,
      "primaryKey": null
    }
  ]
}

About

IBM DB2 extractor


Languages

Language:PHP 90.9%Language:Shell 9.1%