1.表及分割槽格式化資訊
包含儲存位置、分隔符格式、建立時間等資訊。
describe formatted table_name [partition(partition_desc)];
describe formatted recommend_data_view partition (pt_day='2018-07-19');
describe formatted recommend_data_view;
2.表及分割槽的檢視
可以進行模糊查詢。
show tables [in database_name] [identifier_with_wildcards];
show partitions table_name [partition(partition_desc)];
show tables 're*';
show partitions recommend_data_view partition (pt_day='2018-07-19');
3.表及檢視建表語句檢視
show create table ([db_name.]table_name|view_name)
show create table recommend_data_view;
4.列資訊檢視
show columns(from|in) table_name [(from|in) db_name]
show columns in recommend_data_view;
5.帶描述列資訊檢視
describe [extended|formatted] [db_name.]table_name partition partition_spec;
desc recommend_data_view;
desc recommend_data_view partition (pt_day='2018-07-19');
6.其他方面資訊檢視
show tblproperties table_name;
show tblproperties table_name ('');
show tblproperties recommend_data_view;
show table extended[in|from database_name] like identifier_with_wildcards [partition (partition_desc)]
show table extended in default like 'recommend_data_view' partition (pt_day='2018-07-19');
Hive知識之Hive基礎
5 hive的基本操作 5.2 資料表相關操作 6 資料的匯入和匯出 1 hive簡介 2 hive與傳統關係型資料庫的比較 專案hive rdbms 查詢語言 hqlsql 資料儲存 hdfs raw device or local fs 執行mapreduce excuter 執行延遲高低 處理...
《Hive程式設計指南》之Hive環境安裝
hive 1 解壓 2 配置 hadoop home hive home等環境變數 3 修改配置檔案hive conf cp hive default.xml.template hive site.xml 修改hive.metastore.schema.verification的值為false 建立...
Hive之 hive與hadoop的聯絡
hive與hadoop呼叫圖 解析 1 提交sql 交給驅動 2 驅動編譯 解析相關的字段表資訊 3 去metastore查詢相關的資訊 返回字段表資訊 4 編譯返回資訊 發給驅動 5 驅動傳送乙個執行計畫 交給執行引擎 6 執行計畫 三種形式 metastore namenode metastor...