Assignment of a NULL value to a NOT NULL column 메시지와 함께
"TBSPACEID=XX, TABLEID=XX, COLNO=XX" 라는 오류 메시지를 받게 되는 경우 아래의 방법으로 확인가능.
1.
select * from syscat.tables
where tableid = xx
;
로 해당 테이블 명을 확인.
2.
select *
from syscat.columns
where tabname = '확인한 테이블명'
and colno = xx;
로 해당 컬럼을 확인하여 조치를 취할 수 있다.
댓글 없음:
댓글 쓰기