

 Amazon Redshift 將不再支援從修補程式 198 開始建立新的 Python UDFs。現有 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/)。

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# SVCS\$1S3LIST
<a name="r_SVCS_S3LIST"></a>

使用 SVCS\$1S3LIST 檢視以取得有關區段層級的 Amazon Redshift Spectrum 查詢詳細資訊。一個區段可以執行一個外部資料表掃描。此檢視衍生自 SVL\$1S3LIST 系統檢視，但不會顯示執行於並行擴展叢集之查詢的分割層級。

**注意**  
字首為 SVCS 的系統檢視可提供查詢的詳細資訊，包括主要叢集與並行擴展叢集上的查詢。這些檢視類似字首為 SVL 的檢視，差別在於 SVL 檢視僅提供執行於主要叢集之查詢的資訊。

所有使用者都可看見 SVCS\$1S3LIST。超級使用者可以看見所有資料列；一般使用者只能看見自己的資料。如需詳細資訊，請參閱[系統資料表和檢視中資料的可見性](cm_chap_system-tables.md#c_visibility-of-data)。

如需 SVL\$1S3LIST 的相關資訊，請參閱 [SVL\$1S3LIST](r_SVL_S3LIST.md)。

## 資料表欄
<a name="r_SVCS_S3LIST-table-columns"></a>

[\[See the AWS documentation website for more details\]](http://docs.aws.amazon.com/zh_tw/redshift/latest/dg/r_SVCS_S3LIST.html)

## 範例查詢
<a name="r_SVCS_S3LIST-sample-query"></a>

以下範例會查詢前次查詢執行的 SVCS\$1S3LIST。

```
select * 
from svcs_s3list 
where query = pg_last_query_id() 
order by query,segment;
```