티스토리 뷰
큐브리드는 MySQL과는 다르게 Auto Incresement 값을 시스템 테이블의 db_serial에서 관리 합니다.
db_serial은 시스템 테이블이어서 직접 수정 명령을 해야 합니다.
CUBRID 2008 R1.X 이하
update db_serial set current_val = '수정할 숫자' where name = '시리얼이름'
CUBRID 2008 R2.X 이상
alter serial '시리얼이름' start with '수정할 숫자'
update db_serial set current_val = '수정할 숫자' where name = '시리얼이름'
CUBRID 2008 R2.X 이상
alter serial '시리얼이름' start with '수정할 숫자'
까먹기전에 기록!
댓글