Oracle
支持的版本
如何创建 Oracle Load 节点
-- MySQL Extract 节点
CREATE TABLE `mysql_extract_table`(
`id` BIGINT,
`name` STRING,
`age` INT
) WITH (
'connector' = 'mysql-cdc-inlong',
'url' = 'jdbc:mysql://localhost:3306/read',
'password' = 'inlong',
'table-name' = 'user'
)
-- Oracle Load 节点
CREATE TABLE `oracle_load_table`(
`id` BIGINT,
`name` STRING,
`age` INT
'connector' = 'jdbc-inlong',
'url' = 'jdbc:oracle:thin://host:port/database/',
'username' = 'inlong',
'password' = 'inlong',
'table-name' = 'public.user'
)
-- 写数据到 Oracle
INSERT INTO oracle_load_table
数据类型映射