현상
REMAP_TABLE 옵션을 사용하여 tbexport를 수행 시 column comment 오류가 발생합니다.
아래는 TEST 테이블을 TEST_B로 remap 한 예시입니다.
테스트 테이블
SQL> create table test(a number, b varchar(20));
SQL> comment on table test is '테스트';
SQL> comment on column test.a is '숫자';
$ tbexport username=sys password=xxxxx ip=localhost port=8629 sid=tibero table=tibero.test REMAP_TABLE=TEST:TEST_B file=TEST.dmp log=TEST.log script=y
## tbexport.log 일부
COMMENT ON TABLE "TEST_B" IS '테스트'
/
COMMENT ON COLUMN TEST."A" IS '숫자'
SQL
복사
원인
comment on column 구문의 table 이름이 변경되지 않아 오류가 발생합니다.
해결
column comment도 remap table 적용될 수 있도록 로직 수정한 패치를 적용합니다.
(적용패치: FS07_339042a)
주의
티맥스티베로에서 제공하는 기술지원을 통해 패치를 적용합니다.