本章介紹了如何在Hive刪除數(shù)據(jù)庫。模式和數(shù)據(jù)庫的使用是一樣的。
DROP DATABASE是刪除所有的表并刪除數(shù)據(jù)庫的語句。它的語法如下:
DROP DATABASE StatementDROP (DATABASE|SCHEMA) [IF EXISTS] database_name [RESTRICT|CASCADE];
下面的查詢用于刪除數(shù)據(jù)庫。假設(shè)要刪除的數(shù)據(jù)庫名稱為userdb。
hive> DROP DATABASE IF EXISTS userdb;
以下是使用CASCADE查詢刪除數(shù)據(jù)庫。這意味著要全部刪除相應(yīng)的表在刪除數(shù)據(jù)庫之前。
hive> DROP DATABASE IF EXISTS userdb CASCADE;
以下使用SCHEMA查詢刪除數(shù)據(jù)庫。
hive> DROP SCHEMA userdb;
此子句中添加在Hive0.6版本。
在JDBC程序來刪除數(shù)據(jù)庫如下。
import java.sql.SQLException; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import java.sql.DriverManager; public class HiveDropDb { private static String driverName = "org.apache.hadoop.hive.jdbc.HiveDriver"; public static void main(String[] args) throws SQLException { // Register driver and create driver instance Class.forName(driverName); // get connection Connection con = DriverManager.getConnection("jdbc:hive://localhost:10000/default", "", ""); Statement stmt = con.createStatement(); stmt.executeQuery("DROP DATABASE userdb"); System.out.println(“Drop userdb database successful.”); con.close(); } }
將該程序保存在一個名為HiveDropDb.java文件。下面給出的是編譯和執(zhí)行這個程序的命令。
$ javac HiveDropDb.java $ java HiveDropDb
Drop userdb database successful.
更多建議: