Is there any way by which we can implement information_schema
using Hive? Also, What is the process to do data profiling in Hive?
Example in SQL we use Information_Schema
like this :
SELECT * FROM INFORMATION_SCHEMA.TABLES;
Is there any way by which we can implement information_schema
using Hive? Also, What is the process to do data profiling in Hive?
Example in SQL we use Information_Schema
like this :
SELECT * FROM INFORMATION_SCHEMA.TABLES;
information_schema is not implemented in Hive, there is an open JIRA for the same. By default Hive uses Derby as the metastore to store the table metadata. By connecting to Derby, the system tables can be seen.