.with("connector.class", "io.debezium.connector.oracle.OracleConnector")
.with("tasks.max", "1")
.with("offset.storage","org.apache.kafka.connect.storage.FileOffsetBackingStore")
.with("offset.storage.file.filename","C:\\Users\\3.dat") //provide per your environment.
.with("
offset.flush.interval.ms", 1)
.with("name", "oracle_debezium_connector")
.with("database.hostname", "192.168.1.14") //provide docker ip address if docker container db is used.
.with("database.port", "1521")
.with("database.user", "OP")
.with("database.password", "OP")
.with("database.sid", "OPDEV")
.with("
database.server.name", "mServer")
.with("database.history","io.debezium.relational.history.FileDatabaseHistory")
.with("include.schema.changes", "true")
.with("database.connection.adapter", "logminer")
.with("
database.out.server.name", "logminer")
.with("database.history.file.filename",
"C:\\Users\\4.dat") //provide per your environment.
.with("database.dbname", "OPDEV")
.with("
database.pdb.name", "")