Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.13 KB

oracleSink.md

File metadata and controls

55 lines (48 loc) · 1.13 KB

1.格式:

CREATE TABLE tableName(
    colName colType,
    ...
    colNameX colType
 )WITH(
    type ='oracle',
    url ='jdbcUrl',
    userName ='userName',
    password ='pwd',
    tableName ='tableName',
    parallelism ='parllNum'
 );

2.支持版本

10g 11g

3.表结构定义

参数名称 含义
tableName oracle表名称
colName 列名称
colType 列类型 colType支持的类型

4.参数:

参数名称 含义 是否必填 默认值
type 表名 输出表类型[mysq|hbase|elasticsearch|oracle]
url 连接oracle数据库 jdbcUrl
userName oracle连接用户名
password oracle连接密码
tableName oracle表名称
schema oracle 的schema 当前登录用户
parallelism 并行度设置 1

5.样例:

CREATE TABLE MyResult(
    channel VARCHAR,
    pv VARCHAR
 )WITH(
    type ='oracle',
    url ='jdbc:oracle:thin:@xx.xx.xx.xx:1521:orcl',
    userName ='dtstack',
    password ='abc123',
    tableName ='pv2',
    schema = 'MQTEST',
    parallelism ='1'
 )