当前位置:   article > 正文

ubuntu14下hive操作_ubuntu删除hive

ubuntu删除hive

service mysql start
mysql -u hadoop -p

#mysql中创建
create database hive; #保存hive元数据与hive-site.xml中localhost地址对应
grant all on . to hive@localhost identified by ‘hive’; #将数据库所有权限给hive用户,hive是hive-site.xml配置的连接密码
flush privileges; #刷新mysql的权限

start-dfs.sh #启动HDFS
hive #启动Hive

exit; #退出hive

#常见HQL:
create database if not exists hive;
show databases;
show databases like ‘h*’; #查看以h开头的数据库
alter database hive set dbproperties; #hive设键值对属性–没有办法可以删除或者“重置”数据库属性,with dbproperties后面跟的键值,描述该数据库的属性信息,eg:作者是谁,创建日期是什么时候等;
use hive; #换到hive数据库下
drop database if exists hive;
drop database if exists hive cascade; #删除数据库和其中的表
#创建内部表(管理表)
create table if not exists hive.usr(
name string comment ‘username’,
pwd string comment ‘password’,
address structstreet:string,city:string,state:string,zip:int,

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/714999
推荐阅读
相关标签
  

闽ICP备14008679号