DB2 SqlIntegrityConstraintViolationException SQLCODE=-407, SQLSTATE=23502を調べる方法

SqlIntegrityConstraintViolationException

SQLCODE=-407, SQLSTATE=23502

テーブルスペースID、テーブルID、列NoがExceptionの中に表示されるので、下記SQLを実行すれば名称がわかります。
Exceptionも名前で表示してくれればいいのにね。
IDで把握している人いないでしょw

select C.tabschema, C.tabname, C.colname
from syscat.tables as T,
syscat.columns as C
where T.tbspaceid = ''
and T.tableid = ''
and C.colno = ''
and C.tabschema = T.tabschema
and C.tabname = T.tabname
for read only;