当前位置:网站首页>Kettle 读取 Excel 数据输出到 Oracle 详解
Kettle 读取 Excel 数据输出到 Oracle 详解
2022-08-03 19:08:00 【鱼丸丶粗面】
文章目录
1 概述
2 拖拽对象
2.1 新建 - 转换
顺序如下:
2.2 输入 - Excel 输入
2.3 输出 - 表输出
2.4 输入和输出建立联系
注意 箭头方向(快捷键:选中控件,Shift + 鼠标 移动方向)
3 编辑对象
3.1 编辑 Excel 输入
学号 姓名 出生日期
1001 张三 1992/10/30
1002 李四 1994/12/8
1003 王五 1994/5/26
步骤 1:录入测试数据至 Excel(可从上述复制)
步骤 2:按要求,依次编辑各个数据,如:文件
步骤 3:工作表(>:单个项目, >>:所有项目)
步骤 4:内容
步骤 5:字段
3.2 编辑 表输出
步骤1:编辑数据库连接
步骤 2:主选项(提前准备目标表)
create table scott.student_info (
sno number,
sname varchar2(30),
birth_date date
);
步骤 3:数据库字段(注意对应关系)
4 执行验证
查询数据库
select * from scott.student_info;
边栏推荐
猜你喜欢
随机推荐
【HCIP】MPLS实验
图像超分——Real-ESRGAN快速上手
Brush the topic of mobile zero power button
U-Net生物医学图像分割讲解(Convolutional Networks for BiomedicalImage Segmentation)
一文搞懂│php 中的 DI 依赖注入
MySQL——增删改查进阶
Mkke:为什么无法从Oracle 11g或12c升级到Oracle 23c?
Postgresql source code (65) analysis of the working principle of the new snapshot system Globalvis
Zhong Hua, senior architect of Ali: China-Taiwan strategic thinking and architecture practice; including internal implementation manual
讯方实训云平台——加速教育高质量发展的“数字底座”!
Compose原理-compose中是如何实现事件分法的
力扣刷题之移动零
pg_memory_barrier_impl in Postgresql and C's volatile
【Azure 事件中心】使用Azure AD认证方式创建Event Hub Consume Client + 自定义Event Position
货比四家 version tb1.63
When does MySQL use table locks and when to use row locks?You should know this
Postgresql快照优化Globalvis新体系分析(性能大幅增强)
Word另存为PDF后无导航栏解决办法
京东云发布新一代分布式数据库StarDB 5.0
awk语法-02-运算、数组、格式化输出