

 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/)을 참조하세요.

# SYS\_INTEGRATION\_ACTIVITY
<a name="r_SYS_INTEGRATION_ACTIVITY"></a>

SYS\_INTEGRATION\_ACTIVITY는 완료된 통합 실행에 대한 세부 정보를 표시합니다.

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

제로 ETL 통합에 대한 자세한 내용은 Amazon Redshift 관리 안내서의 [제로 ETL 통합 작업](https://docs.aws.amazon.com//redshift/latest/mgmt/zero-etl-using.html)을 참조하세요.

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


| 열 이름  | 데이터 유형  | 설명  | 
| --- | --- | --- | 
| integration\_id | character(128) | 통합과 관련된 식별자입니다. | 
| target\_database | character(128) | 통합 데이터를 수신하는 Amazon Redshift의 데이터베이스입니다. | 
| source | character(128) | 통합을 위한 소스 데이터입니다. 가능한 유형에는 MySQL 및 PostgreSQL이 포함됩니다. | 
| checkpoint\_name | character(128) | binlog 좌표를 복제하는 체크포인트 이름입니다. | 
| checkpoint\_type | character(16) | 체크포인트 유형입니다. 가능한 값은 snapshot, cdc가 포함되어 있습니다. | 
| checkpoint\_bytes | bigint | 이 체크포인트의 바이트 수입니다. | 
| last\_commit\_timestamp | timestamp | 이 체크포인트에서 마지막으로 커밋된 타임스탬프입니다. | 
| 수정된 테이블 | 정수 | 체크포인트에서 수정된 테이블 수입니다. | 
| integration\_start\_time | 시간 | 이 체크포인트에 대한 통합이 시작된 시간(UTC)입니다. | 
| integration\_end\_time | 시간 | 이 체크포인트에 대한 통합이 종료된 시간(UTC)입니다. | 

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

다음 SQL 명령은 통합 로그를 표시합니다.

```
select * from sys_integration_activity;

          integration_id              | target_database | source |            checkpoint_name                  | checkpoint_type  | checkpoint_bytes | last_commit_timestamp   | modified_tables |   integration_start_time   |    integration_end_time
--------------------------------------+-----------------+--------+---------------------------------------------+------------------+------------------+-------------------------+-----------------+----------------------------+----------------------------
 76b15917-afae-4447-b7fd-08e2a5acce7b |   demo1         | MySQL  | checkpoints/checkpoint_3_241_3_510.json     |        cdc       |        762       | 2023-05-10 23:00:14.201 |         1       | 2023-05-10 23:00:45.054265 | 2023-05-10 23:00:46.339826
 76b15917-afae-4447-b7fd-08e2a5acce7b |   demo1         | MySQL  | checkpoints/checkpoint_3_16329_3_17839.json |        cdc       |       13488      | 2023-05-11 01:33:57.411 |         2       | 2023-05-11 02:19:09.440121 | 2023-05-11 02:19:16.090492
 76b15917-afae-4447-b7fd-08e2a5acce7b |   demo1         | MySQL  | checkpoints/checkpoint_3_5103_3_5532.json   |        cdc       |        1657      | 2023-05-10 23:13:14.205 |         2       | 2023-05-10 23:13:23.545487 | 2023-05-10 23:13:25.652144
```