SHOW ICEBERG TABLES¶
列出您拥有访问权限的 Apache Iceberg™ 表。
该命令可用于列出当前/指定数据库或架构的 Iceberg 表,或整个账户的 Iceberg 表。
此命令返回与 SHOW TABLES 不同的输出列。输出返回 Iceberg 表元数据和属性,按数据库、架构和 Iceberg 表名称按字典顺序排序(有关输出列的说明,请参阅本主题内容 输出)。如果您要使用提供的筛选器筛选结果,请务必注意这一点。
请注意,本主题将 Iceberg 表简称为“表”,除非指定 Iceberg 表 以避免混淆。
语法¶
SHOW [ TERSE ] [ ICEBERG ] TABLES [ LIKE '<pattern>' ]
[ IN
{
ACCOUNT |
DATABASE |
DATABASE <database_name> |
SCHEMA |
SCHEMA <schema_name> |
<schema_name>
}
]
[ STARTS WITH '<name_string>' ]
[ LIMIT <rows> [ FROM '<name_string>' ] ]
参数¶
TERSE(可选)仅返回输出列的子集:
created_onnamekindkind列值始终为 ICEBERG TABLE。database_nameschema_name
默认:无值(所有列都包含在输出中)
ICEBERG仅返回 Iceberg 表。
LIKE 'pattern'(可选)按对象名称筛选命令输出。筛选器使用 不区分大小写 的模式匹配,并支持 SQL 通配符(
%和_)。例如,以下模式返回 相同的 结果:
... LIKE '%testing%' ...... LIKE '%TESTING%' .... 默认:无值(不对输出应用筛选)。
[ IN ... ](可选)指定命令的作用域。指定以下任一项:
ACCOUNT返回整个账户的记录。
DATABASE、.DATABASE db_name返回当前正在使用的数据库或指定数据库 (
db_name) 的记录。如果指定
DATABASE而不指定db_name,并且没有使用任何数据库,则关键字对输出没有影响。备注
在数据库上下文中使用不带
IN子句的 SHOW 命令,这样可能会导致结果低于预期。如果不使用
IN子句,则具有相同名称的多个对象只会显示一次。例如,如果您在schema1中具有表t1且在schema2中具有表t1,并且两者都在您指定的数据库上下文的作用域内(即,您所选的数据库是schema1和schema2的父级),则 SHOW TABLES 只会显示其中一个t1表。SCHEMA、.SCHEMA schema_name返回当前正在使用的架构或指定架构 (
schema_name) 的记录。如果数据库正在使用中,或者指定了完全限定
schema_name(例如db.schema),则SCHEMA是可选选项。如果未使用任何数据库,则指定
SCHEMA对输出没有影响。
If you omit
IN ..., the scope of the command depends on whether the session currently has a database in use:If a database is currently in use, the command returns the objects you have privileges to view in the database. This has the same effect as specifiying
IN DATABASE.If no database is currently in use, the command returns the objects you have privileges to view in your account. This has the same effect as specifiying
IN ACCOUNT.
STARTS WITH 'name_string'(可选)根据对象名称开头显示的字符筛选命令输出。该字符串必须放在单引号内并且 区分大小写。
例如,以下字符串会返回 不同的 结果:
... STARTS WITH 'B' ...... STARTS WITH 'b' .... 默认:无值(不对输出应用筛选)
LIMIT rows [ FROM 'name_string' ](可选)限制返回的最大行数,同时还对结果启用“分页”功能。返回的实际行数可能小于指定的限制。例如,现有对象的数量小于指定的限制。
可选的
FROM 'name_string'分子句实际上会充当结果的“游标”。这样就可以提取对象名称与指定字符串匹配的第一行之后的指定行数:该字符串必须放在单引号内并且 区分大小写。
该字符串不必包含完整的对象名称;支持部分名称。
默认:无值(不对输出应用限制)
备注
对于支持
FROM 'name_string'和STARTS WITH 'name_string'的 SHOW 子句,您可以将这两个子句组合在同一语句中。但是,两个条件都必须满足,否则它们相互抵消,不返回任何结果。此外,对象按名称的字典顺序返回,因此
FROM 'name_string'仅返回字典值高于STARTS WITH 'name_string'所返回行的行。例如:
... STARTS WITH 'A' LIMIT ... FROM 'B'不会返回任何结果。... STARTS WITH 'B' LIMIT ... FROM 'A'不会返回任何结果。... STARTS WITH 'A' LIMIT ... FROM 'AB'将返回结果(如果有任何行与输入字符串匹配)。
访问控制要求¶
权限 |
对象 |
备注 |
|---|---|---|
SELECT |
Iceberg 表 |
若要在 SHOW ICEBERG TABLES 的输出中查看特定的 Iceberg 表,角色必须具有该表的 SELECT 权限。 |
The USAGE privilege on the parent database and schema are required to perform operations on any object in a schema. Note that a role granted any privilege on a schema allows that role to resolve the schema. For example, a role granted CREATE privilege on a schema can create objects on that schema without also having USAGE granted on that schema.
有关创建具有指定权限集的自定义角色的说明,请参阅 创建自定义角色。
使用说明¶
如果一个账户(或数据库或架构)有大量 Iceberg 表,则搜索整个账户(或数据库或架构)可能会消耗大量的计算资源。
该命令不需要正在运行的仓库即可执行。
该命令仅返回当前用户的当前角色已获授至少一项访问权限的对象。
MANAGE GRANTS 访问权限隐式允许其持有者查看账户中的每个对象。默认情况下,只有账户管理员(具有 ACCOUNTADMIN 角色的用户)和安全管理员(具有 SECURITYADMIN 角色的用户)才具有 MANAGE GRANTS 权限。
To post-process the output of this command, you can use the pipe operator (
->>) or the RESULT_SCAN function. Both constructs treat the output as a result set that you can query.The output column names for this command are generated in lowercase. If you consume a result set from this command with the pipe operator or the RESULT_SCAN function, use double-quoted identifiers for the column names in the query to ensure that they match the column names in the output that was scanned. For example, if the name of an output column is
type, then specify"type"for the identifier.
LIMIT rows的值不能超过10000。如果省略LIMIT rows,若结果集大于 1 万行,则该命令将导致错误。要查看存在超过 1 万条记录的结果,请在 Snowflake Information Schema 中包含
LIMIT rows或查询相应的视图。
输出¶
备注
以下输出架构适用于 SHOW ICEBERG TABLES 命令。有关 SHOW TABLES 的输出信息,请参阅 使用 SHOW 识别 Iceberg 表 TABLES (本主题内容)。
命令输出在以下列中提供表属性和元数据:
列 |
描述 |
|---|---|
|
创建表的日期和时间。 |
|
表的名称。 |
|
存储表的数据库。 |
|
存储表的架构。 |
|
拥有表的角色。 |
|
存储 Iceberg 表数据和元数据的外部卷的名称。 |
|
当 Iceberg 表不受 Snowflake 管理时,与该表关联的目录集成对象的名称。当表由 Snowflake 管理时,显示 |
|
Iceberg 表的类型。如果该表不是由 Snowflake 管理的,显示 |
|
目录识别的表的名称。 |
|
对于外部管理的表,这是创建表时定义的命名空间。如果未在表级别定义,则为与表所用目录集成关联的默认命名空间。对于与 Snowflake Open Catalog 同步且由 Snowflake 管理的表,此字段并非必需,因此值为 |
|
从 |
|
表示 Snowflake 是否可以将元数据写入 |
|
为表添加注释。 |
|
包含有关使用 列投影 (https://iceberg.apache.org/spec/#column-projection) 的表列的信息的对象列表。有关更多信息,请参阅 name_mapping。 |
|
拥有对象的角色类型,例如 |
|
Denotes the name of the catalog integration for Snowflake Open Catalog that the Snowflake-managed Apache Iceberg™ table syncs to. If the table doesn't sync with Snowflake Open Catalog or isn't managed by Snowflake, the value is |
|
外部管理的 Iceberg 表的自动刷新状态。此列显示与 SYSTEM$AUTO_REFRESH_STATUS 函数相同的表结果。 |
|
List of objects describing the Apache Iceberg™ partition specifications for the table, as found in the Iceberg metadata file. Includes specification for both Snowflake-managed and externally managed Iceberg tables. For more information, see partition_specs. |
|
ID for the partition spec that is currently active for the Iceberg table. This ID corresponds to a value for |
name_mapping¶
name_mapping 输出列提供有关使用 列投影 (https://iceberg.apache.org/spec/#column-projection) 的表列的信息。
如果表不包含任何具有关联名称映射的列,则输出列的值为 [NULL]。否则,该值是对象列表,其中每个对象对应于具有关联名称映射的列(有时称为映射字段)。每个对象可以包含以下三个属性:
field-id:Iceberg 字段 ID。names:字段的名称字符串列表。fields:结构、映射或列表列的子字段的字段映射列表。
例如:
[
{
"field-id": 1,
"names": [
"id",
"record_id"
]
},
{
"field-id": 2,
"names": [
"data"
]
},
{
"field-id": 3,
"names": [
"location"
],
"fields": [
{
"field-id": 4,
"names": [
"latitude",
"lat"
]
},
{
"field-id": 5,
"names": [
"longitude",
"long"
]
}
]
}
]
备注
Field IDs can be non-consecutive if a column, or a field in a structured type column doesn't have an associated name mapping.
partition_specs¶
Each object in the partition_specs column includes a spec-id,
followed by the fields for the partition specification. Each field is an OBJECT value with the
following key-value pairs:
name: The name of the partition.transform: The transformation applied to the source column to generate a partition value. This value determines how data is grouped into partitions.source-id: The identifier of the original table column or field that is used for partitioning.field-id: The partition field ID. This field identifies a partition field and is unique in a partition specification. However, for Iceberg V2 table metadata, the field ID is unique across all partition specifications.
例如:
[ {
"spec-id" : 0,
"fields" : [ {
"name" : "COL1",
"transform" : "identity",
"source-id" : 1,
"field-id" : 1000
}, {
"name" : "COL1_trunc_100",
"transform" : "truncate[100]",
"source-id" : 1,
"field-id" : 1001
}
]
} ]
The example shows one partition specification; however, a table can have multiple partition specifications.
示例¶
显示其名称以 glue``(您有权在 ``tpch.public 架构中查看)开头的所有 Iceberg 表:
SHOW ICEBERG TABLES LIKE 'glue%' IN tpch.public;
使用 SHOW TABLES 识别 Iceberg 表¶
SHOW TABLES 命令输出具有一列,可用于识别表是否为 Iceberg 表。除了常规 SHOW TABLES 输出列 之外,还会显示此列。
该列具有以下名称和可能的值:
列名称 |
值 |
|---|---|
is_iceberg |
如果该表是 Iceberg 表,显示 |