Support Questions

Find answers, ask questions, and share your expertise

List hive tables based on storage format

avatar
Rising Star

Is it possible to list hive tables based on the storage format? We want to implement a standard format for tables; before that we want to list down existing tables based on storage and identify which are not in standard format

1 ACCEPTED SOLUTION

avatar
Mentor
There's no direct way to filter that out via a simple statement.

You can either use JDBC to fetch catalog data and iterate through the descriptors, or run iterative "DESCRIBE (FORMATTED|EXTENDED) <TABLENAME>" and grep out the Storage and Format related information.

If this is a one-off, you can also explore querying the underlying HMS DB, but do not make something persistently reliant on that as the schema is subject to change between releases.

View solution in original post

2 REPLIES 2

avatar
Mentor
There's no direct way to filter that out via a simple statement.

You can either use JDBC to fetch catalog data and iterate through the descriptors, or run iterative "DESCRIBE (FORMATTED|EXTENDED) <TABLENAME>" and grep out the Storage and Format related information.

If this is a one-off, you can also explore querying the underlying HMS DB, but do not make something persistently reliant on that as the schema is subject to change between releases.

avatar
Rising Star
Thx Harsh , i will explore