Tibero | JDBC-5072:Failure converting NUMBER to or from a native type.
페이지 정보
작성자 100K5 작성일21-02-17 15:48 조회12,434회 댓글0건관련링크
본문
에러 메시지
JDBC-5072:Failure converting NUMBER to or from a native type.
가 노출 될 경우 아래와 같이 진행 한다.
- 아래 -
1. root 권한으로 터미널 접속 하여 null인 테이블의 행수 찾는다.
select
a.object_id
from
dba_objects a,
(select obj_id, row_cnt from sys._dd_tbl ) b
where
a.object_id= b.obj_id
and b.row_cnt is null;
2. row_cnt = 0 으로 업데이트 한다.
update
sys._dd_tbl set row_cnt = 0
where
obj_id in (
select
a.object_id
from
dba_objects a,
(select obj_id, row_cnt from sys._dd_tbl ) b
where
a.object_id= b.obj_id
and b.row_cnt is null
);
3. 커밋 한다.
commit;
4. drop table 한다.
댓글목록
등록된 댓글이 없습니다.