Oracle 视图 ALL_HIVE_TABLES 官方解释,作用,如何使用详细说明
本站中文解释
视图
ALL_HIVE_TABLES 视图是在Oracle中为了更方便地查看有关Hive表的信息而设置的视图,保存在SYS.EXTERNAL_TABLES 对象中。
使用ALL_HIVE_TABLES视图,可以方便地获取与Hive相关的信息,从而使用这些信息快速构建Hive表,节省时间,主要包括以下几个方面:
1. 用来获取Hive表名,并查看相关字段信息;
2. 便捷地提取Hive表中字段,列出字段类型;
3. 获取Hive表之外的相关信息;
4. 查看有关Hive表的元数据信息,了解Hive表构建过程及表规范;
5. 查看索引信息;
6. 支持多数据源访问;
7. 快速获取标准Hive表模板;
8. 可以动态查看生成的Hive表状态等。
官方英文解释
ALL_HIVE_TABLES
provides information about all the Hive tables accessible to the current user in the Hive metastore.
Related Views
-
DBA_HIVE_TABLES
provides information about all Hive tables in the Hive metastore. -
USER_HIVE_TABLES
provides information about all Hive tables owned by the current user in the Hive metastore.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Hadoop cluster name |
|
|
|
Hive database where the Hive table resides |
|
|
|
Hive table name |
|
|
|
Physical location of the Hive table |
|
|
|
Number of columns in the Hive table |
|
|
|
Creation time of the Hive table |
|
|
|
Time that the Hive table was last accessed |
|
|
|
Owner of the Hive table |
|
|
|
Type of the Hive table |
|
|
|
Is this Hive table partitioned? |
|
|
|
Number of partition keys in the Hive table |
|
|
|
Hive table input format |
|
|
|
Hive table output format |
|
|
|
Hive table serialization |
|
|
|
Is this Hive table compressed? |
|
|
|
The connection string (URI and port number) for the metastore database |
See Also:
-
“DBA_HIVE_TABLES”
-
“USER_HIVE_TABLES”