30 大資料 hive常用命令集錦

2021-09-25 05:57:40 字數 796 閱讀 2663

1、資料庫相關

1> 使用資料庫

use myhivetest;

2> 檢視當前正在使用的資料庫

select current_database();

3> 檢視建立庫的詳細語句

show create database t3; (–t3為資料庫名稱)

4> 檢視資料庫

describe database t2;

desc database t2;

desc database extended t2;

5> 正則匹配查詢資料庫

show databases like 『*t』;

6> 檢視資料庫中有哪些表

show tables in databasename;

2、表相關

1> 檢視表結構

desc formatted student;

desc student;

2> 檢視表的資訊

desc student;

desc formatted student;

desc extended sudent; --分割槽表會顯示分割槽鍵

3、分割槽相關

1> 檢視表分割槽

show partitions t;

2> 檢視分割槽資訊

show partitions student_ptn;

show partitions student_ptn partition(class=『一』)

AIX常用命令集錦

1 telnet ip 連線到小型機 2 login team08 password 登陸 3 passwd 更改口令 4 logout 退出 直接退出系統 5 exit 退出 ctrl d 退出當前的shell 6 date 列出當前日期時間 加引數改變輸出格式 7 cal 察看年月日資訊 8 c...

AIX常用命令集錦

命令 1 telnet ip 連線到小型機 2 login team08 password 登陸 3 passwd 更改口令 4 logout 退出 直接退出系統 5 exit 退出 ctrl d 退出當前的shell 6 date 列出當前日期時間 加引數改變輸出格式 7 cal 察看年月日資訊 ...

linux 常用命令集錦

常見命令 ls 顯示檔案和目錄列表 touch 生成指定的空檔案或更改時間 cat tac 顯示文字的內容 cp 複製複製檔案和目錄可以用 rf引數連用 mkdir 建立檔案 rm 複製檔案和目錄可以用 rf引數連用 mv 移動或重新命名 more less 分頁顯示檔案的內容 head tail ...