Kafka JSON Target - connect_cdc_sqdata - Latest

Connect CDC (SQData) Replicator Engine

Product type
Software
Portfolio
Integrate
Product family
Connect
Product
Connect > Connect CDC (SQData)
Version
Latest
Language
English
Product name
Connect CDC (SQData)
Title
Connect CDC (SQData) Replicator Engine
Copyright
2024
First publish date
2000
ft:lastEdition
2024-08-01
ft:lastPublication
2024-08-01T16:58:30.842568
  • Simple JSON formatted Kafka where the * (asterisk) specifies that every source object name (i.e. table name) will become the Topic name.
    REPLICATE
      DB2 cdc://<host_name>:<sqdaemon_port>/<publisher_name>/<subscription_name>
      TO JSON kafka:///*/key
    ;
  • Simple JSON formatted Kafka where every source object name (i.e. table name) is written to a single Topic and all JSON objects are made AVRO compatible using the OPTIONS statement.
    REPLICATE
      DB2 cdc://<host_name>:<sqdaemon_port>/<publisher_name>/<subscription_name>
      TO JSON kafka:///<topic_name>/key
    ;
    OPTIONS
    AVRO COMPATIBLE NAMES,
    ;
  • Simple JSON formatted Kafka where every source object name (i.e. table name) is written to a specified Topic with a common prefix and suffix.
    REPLICATE
      DB2 cdc://<host_name>:<sqdaemon_port>/<publisher_name>/<subscription_name>
      TO JSON kafka:///<prefix>_*_<suffix>/key