

 Amazon Redshift는 패치 198부터 새 Python UDF 생성을 더 이상 지원하지 않습니다. 기존 Python UDF는 2026년 6월 30일까지 계속 작동합니다. 자세한 내용은 [블로그 게시물](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/)을 참조하세요.

# SVL\_RESTORE\_ALTER\_TABLE\_PROGRESS
<a name="r_SVL_RESTORE_ALTER_TABLE_PROGRESS"></a>

RA3 노드로의 클래식 크기 조정 중에 클러스터 내 각 테이블의 마이그레이션 진행 상황을 모니터링하려면 SVL\_RESTORE\_ALTER\_TABLE\_PROGRESS를 사용합니다. 이는 크기 조정 작업 중 데이터 마이그레이션의 과거 처리량을 캡처합니다. RA3 노드로의 클래식 크기 조정에 대한 자세한 내용은 [클래식 크기 조정](https://docs.aws.amazon.com/redshift/latest/mgmt/managing-cluster-operations.html#classic-resize-faster)에서 확인하세요.

SVL\_RESTORE\_ALTER\_TABLE\_PROGRESS는 슈퍼 사용자에게만 표시됩니다. 자세한 내용은 [시스템 테이블 및 뷰에 있는 데이터의 가시성](cm_chap_system-tables.md#c_visibility-of-data) 섹션을 참조하세요.

이 테이블의 데이터 중 일부 또는 전부는 SYS 모니터링 뷰인 [SYS\_RESTORE\_LOG](SYS_RESTORE_LOG.md)에서도 찾아볼 수 있습니다. SYS 모니터링 뷰의 데이터는 사용 및 이해가 더 쉽도록 형식이 지정되어 있습니다. 쿼리에 SYS 모니터링 뷰를 사용하는 것이 좋습니다.

**참고**  
진행 상황이 `100.00%` 또는 `ABORTED`인 행은 7일 후에 삭제됩니다. 클래식 크기 조정 도중 또는 이후에 삭제된 테이블의 행이 여전히 SVL\_RESTORE\_ALTER\_TABLE\_PROGRESS에서 나타날 수 있습니다.

## 테이블 열
<a name="r_SVL_RESTORE_ALTER_TABLE_PROGRESS-table-columns"></a>


| 열 이름  | 데이터 유형  | 설명  | 
| --- | --- | --- | 
| tbl | 정수 | 테이블의 ID입니다. | 
| progress | char(32) | 테이블의 재배포 진행 상태입니다. 가능한 값은 0.00%\~100.00%의 백분율 및 ABORTED라는 메시지입니다. ABORTED는 재배포가 완료되지 않고 중단되었음을 의미합니다. 이유는 message 열에 설명되어 있습니다. | 
| message | char(256) | 테이블의 재배포 진행 상황과 관련된 메시지입니다. | 

## 샘플 쿼리
<a name="r_SVL_RESTORE_ALTER_TABLE_PROGRESS-sample-queries"></a>

다음 쿼리는 실행 중인 쿼리와 대기 중인 쿼리를 반환합니다.

```
select * from svl_restore_alter_table_progress;

tbl     | progress |                          message                          
--------+----------+-----------------------------------------------------------
105614  | ABORTED  | Abort:Table no longer contains the prior dist key column.
105610  | ABORTED  | Abort:Table no longer contains the prior dist key column.
105594  | 0.00%    | Table waiting for alter diststyle conversion.
105602  | ABORTED  | Abort:Table no longer contains the prior dist key column.
105606  | ABORTED  | Abort:Table no longer contains the prior dist key column.
105598  | 100.00%  | Restored to distkey successfully.
```