赞
踩
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,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。