Oracle 视图 USER_HIVE_TABLES 官方解释,作用,如何使用详细说明

本站中文解释

USER_HIVE_TABLES是Oracle数据库12.2之后提供的用来获取Hive表的数据字典表,简单地说,通过它可以查询出Hive所有的表,以及表的信息,如属性、表空间等。

使用该语句可以查询目标表:
SELECT t.*
FROM USER_HIVE_TABLES t
WHERE t.HIVE_TABLE_NAME = ‘target_table’;

官方英文解释

USER_HIVE_TABLES provides information about all the Hive tables owned by the current user in the Hive metastore. Its columns are the same as those in ALL_HIVE_TABLES.

See Also:

“ALL_HIVE_TABLES”


数据运维技术 » Oracle 视图 USER_HIVE_TABLES 官方解释,作用,如何使用详细说明