要查看所有hive表和数据量,可以使用以下命令:
show tables;
select count(*) from table_name;
你也可以使用以下命令来查看所有表的数据量:
show table extended like '*';
这将显示所有表的详细信息,包括表的数据量。