행위

ORA-01552

DB CAFE

Dbcafe (토론 | 기여)님의 2020년 11월 9일 (월) 00:16 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
thumb_up 추천메뉴 바로가기


ORA-01552[편집]

ORA-01552: cannot use system rollback segment for non-system tablespace 'TS_MIGCOMMON_D01'

롤백세그먼트를 사용할수 없음. 에러


SQL> conn system/sys as sysdba;
SQL> show parameter undo

         NAME                 TYPE              VALUE
-----------------------   -------------    ---------------
undo_management              string           MANUAL
undo_retention               integer          35000 
undo_tablespace              string          UNDOTBS1

위에 MANUAL 을 AUTO 로 변경해주어야 한다.

SQL> alter system set undo_management = 'AUTO' scope=spfile;
SQL> shutdown immediate
SQL> startup