通过 AWS Redshift 加载的记录数

# of records loaded through AWS Redshift

是否可以通过 AWS 控制台了解使用 AWS 数据管道加载到 redshift table 中的记录数?

您可以从 STL_LOAD_COMMITS table 获得该信息。

特看lines_scanned栏目:

Number of lines scanned from the load file. This number may not match the number of rows that are actually loaded. For example, the load may scan but tolerate a number of bad records, based on the MAXERROR option in the COPY command.

喜欢

SELECT * FROM STL_LOAD_COMMITS
ORDER BY curtime DESC
LIMIT 10