1)创建一个数据库并使用它。
hive> create database testdb;
hive> use testdb;
2)设置hive.cli.print.current.db = true以显示正在使用的数据库。
hive> set hive.cli.print.current.db=true;
hive (testdb)>
3)放下数据库。
hive (testdb)> drop database testdb;
4)设置hive.cli.print.current.db = false,然后将其设置为true。
hive (testdb)> set hive.cli.print.current.db=false;
hive> set hive.cli.print.current.db=true;
5)Hive CLI仍然表示正在使用已删除的数据库。
hive (testdb)>
答案 0 :(得分:0)
如果您正在使用DEV环境,