how to create oracle cdc table? #533
Unanswered
A-little-bit-of-data
asked this question in
Q&A
Replies: 2 comments 7 replies
-
@luoyuxia contribution |
Beta Was this translation helpful? Give feedback.
4 replies
-
Where do you get from Maybe you can build the module And put it into <FLINK_HOME>/lib/ , then run with |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
CREATE TABLE oracle_binlog (
id INT NOT NULL,
name STRING,
description STRING,
weight DECIMAL(10,3)
) WITH (
'connector' = 'oracle-cdc',
'hostname' = '',
'port' = '',
'username' = '',
'password' = '',
'database-name' = '',
'table-name' = ''
);
This is for reference to create a MySQL CDC table, but this does not work properly.
Beta Was this translation helpful? Give feedback.
All reactions