脱坑:Kettle+postgres:Caused by: org.postgresql.util.PSQLException: ERROR: column “xxx“ does not exist

kettlepostgres数据库中传数据时,发现了这样的问题:
脱坑:Kettle+postgres:Caused by: org.postgresql.util.PSQLException: ERROR: column “xxx“ does not exist_第1张图片
可是实际上是有这个字段的,数据库中字段为大写的“SUPPLIER_CODE”。
第一次操作pg数据库,没有经验,查了一下资料发现是pg数据库大小写敏感的原因。

原因:postgres区分大小写,默认是小写字段建表;遇到的问题是因为表为大写字母建表

解决:方法一:用小写字段重新建表;方法二:kettle中大写字段手动加双引号。

脱坑:Kettle+postgres:Caused by: org.postgresql.util.PSQLException: ERROR: column “xxx“ does not exist_第2张图片

你可能感兴趣的:(脱坑指南,数据库,elt,postgresql)