码迷,mamicode.com
首页 > 数据库 > 详细

Hive_删除数据库

时间:2019-11-05 00:49:21      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:fail   tables   turn   val   class   mes   数据库   apache   style   

1.删除空数据库

hive>drop database db_hive2;

2.如果删除的数据库不存在,最好采用 if exists判断数据库是否存在

hive> drop database db_hive;
FAILED: SemanticException [Error 10072]: Database does not exist: db_hive
hive> drop database if exists db_hive2;

3.如果数据库不为空,可以采用cascade命令,强制删除

hive> drop database db_hive;
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. InvalidOperationException(message:Database db_hive is not empty. One or more tables exist.)
hive> drop database db_hive cascade;

 

Hive_删除数据库

标签:fail   tables   turn   val   class   mes   数据库   apache   style   

原文地址:https://www.cnblogs.com/Tunan-Ki/p/11795733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!