根据
SQLCODE
我们可以知道此异常是将非空的字段放入了空值
1.先查询出具体报错的表
select * from syscat.tables where tbspaceid='3' and tableid='514'
2.再根据查询出的结果查询具体的字段
select * from syscat.columns where tabschema='APSADMIN' and tabname='T_APS_USER' and colno='29'
根据
SQLCODE
我们可以知道此异常是将非空的字段放入了空值
select * from syscat.tables where tbspaceid='3' and tableid='514'
select * from syscat.columns where tabschema='APSADMIN' and tabname='T_APS_USER' and colno='29'
本文标题:DB2根据报错信息查询出具体报错的字段(SQLCODE=-407
本文链接:https://www.haomeiwen.com/subject/bjstwftx.html
网友评论