当前位置:网站首页>db2中kettle报错 Field [XXX] is required and couldn‘t be found 解决方法
db2中kettle报错 Field [XXX] is required and couldn‘t be found 解决方法
2022-08-04 02:43:00 【追逐梦想永不停】
一、前言
有一个需求,要从db2的某个表抽取数据到mysql的某个表中。
准备用kettle实现,由于数据来源是db2,因此要先写db2的sql语句,样例如下:
select
user_name as name,
concat(modifydate, concat(' ',modifytime)) as last_modified_date
from myschema.mytable
然后,mysql里的目标表中,使用了:
<value>
<name>name</name>
<rename>name</rename>
<update>Y</update>
</value>
<value>
<name>last_modified_date</name>
<rename>last_modified_date</rename>
<update>Y</update>
</value>
结果,执行时报错:
Field [name] is required and couldn't be found
上面明明配置了as name
,但是还报错没有name,就很奇葩。
二、解决方法
1.点击kettle里的获取和更新字段
试了下,发现如果sql是上面样的,那么自动生成的字段如下:
<value>
<name>user_name</name>
<rename>user_name</rename>
<update>Y</update>
</value>
<value>
<name>last_modified_date</name>
<rename>last_modified_date</rename>
<update>Y</update>
</value>
也就是说,db2里的sql,写了个user_name as name
,但是没有生效。
这样也行,但是还是别扭,为什么as没有生效呢?
2.于是,修改sql为:
select
trim(user_name) as name,
concat(modifydate, concat(' ',modifytime)) as last_modified_date
from myschema.mytable
加了一个trim,终于,不报错了。
所以结论就是,kettle里写db2的sql时,如果只用as,是不会生效的;
必须加些处理方法,例如trim()。(虽然不知道为什么)
三、备注
1.如果使用kettle连接db2数据库时,报错没有驱动,就把db2jcc4-9.7.0.6.jar
放到\data-integration\lib下,重启kettle即可。(这个就是连接db2用的jar包)
2.kettle连接db2数据库,使用的sql中,使用limit没有生效:fetch first 10 rows only
,运行后还是会查全部数据,不确定是为什么。
边栏推荐
- 查看mysql死锁语法
- How many ways do you know about communication between multiple threads?
- 如何读取 resources 目录下的文件路径?
- sqoop ETL tool
- 小甲鱼汇编笔记
- activiti流程执行过程中,数据库表的使用关系
- 一文看懂推荐系统:召回05:矩阵补充、最近邻查找,工业界基本不用了,但是有助于理解双塔模型
- The browser
- uni-app 从零开始-基础模版(一)
- FileNotFoundException: This file can not be opened as a file descriptor; it is probably compressed
猜你喜欢
贪吃蛇游戏Bug解析及功能扩展
脚手架内容详解分析
Engineering drawing review questions (with answers)
There are n steps in total, and you can go up to 1 or 2 steps each time. How many ways are there?
Qt中对象树的机制介绍以及底层实现,各种结果分析:(以及自己写容易犯错的点)
Day13 Postman的使用
C program compilation and predefined detailed explanation
Flutter3.0线程——四步教你如何全方位了解(事件队列)
priority_queue元素为指针时,重载运算符失效
MallBook联合人民交通出版社,推动驾培领域新发展,开启驾培智慧交易新生态
随机推荐
融云「音视频架构实践」技术专场【内含完整PPT】
怎样提高网络数据安全性
[Original] Start the XPS/OXPS reader that comes with Windows 10
Asynchronous programming solution Generator generator function, iterator iterator, async/await, Promise
Ant - the design of the Select component using a custom icon (suffixIcon attribute) suffixes, click on the custom ICONS have no reaction, will not display the drop-down menu
keytool命令
Example 041: Methods and variables of a class
Development of Taurus. MVC WebAPI introductory tutorial 1: download environment configuration and operation framework (including series directory).
实例037:排序
Oracle迁移到瀚高之后,空值问题处理
C语言--环形缓存区
View mysql deadlock syntax
Qt中对象树的机制介绍以及底层实现,各种结果分析:(以及自己写容易犯错的点)
【云原生】DevOps(六):Jenkins流水线
浏览器存储
html select tag assignment database query result
小甲鱼汇编笔记
QNX Hypervisor 2.2 user manual] 10.1 gm vdev options
Kubernetes:(九)coredns(浪不动了)
Zabbix设置邮件告警+企业微信告警