hive刪除資料庫

2021-09-18 06:33:20 字數 472 閱讀 8514

hive刪除資料庫

drop database是刪除所有的表並刪除資料庫的語句。它的語法如下:

drop database statementdrop (database|schema) [if exists] database_name 

[restrict|cascade];

下面的查詢用於刪除資料庫。假設要刪除的資料庫名稱為userdb。

hive> drop database if exists userdb;
以下是使用cascade查詢刪除資料庫。這意味著要全部刪除相應的表在刪除資料庫之前。

hive> drop database if exists userdb cascade;

檢視資料庫:

show databases;

刪除後檢視hdfs檔案,也已經刪除

hdfs dfs -ls /hive/warehouse/

Oracle資料庫 刪除資料庫

1 單擊 開始 oracle oradb12home1 database configuration assistant 進入刪除步驟的第一步,選擇 刪除資料庫 2 單擊 下一步 按鈕,如圖所示。在資料庫列表中選擇需要刪除的資料,例如test,並輸入使用者名稱和口令。3 單擊 下一步 按鈕,開啟 管...

mysql刪除資料庫資料庫 MySQL刪除資料庫

刪除資料庫是指在資料庫系統中刪除已經存在的資料庫。資料庫刪除之後,原來分配的空間將被收回。需要注意的是,資料庫刪除之後該資料庫中所有的表和資料都將被刪除。因此刪除資料庫要特別小心。一 通過sql語句 mysql中,刪除資料庫通過sql語句drop database。其語法格式如下 drop data...

刪除資料庫使用者

usr bin ksh 1 upload the shell command to the server 2 grant the 777 to the command 3 use method like as follow dropuser.sh username the username as t...