摘要:
HBase和phoenix安装好的前提下 一:hbase命令 名称 命令表达式 查看hbase状态 status 创建表 create '表名','列族名1','列族名2','列族名N' 查看所有表 list 描述表 describe '表名' 判断表存在 exists '表名' 判断是否禁用启用表 阅读全文
摘要:
Oracle创建索引;查询索引 第一种命令创建 1、创建索引 create index 索引名 on 表名(列名); 2、删除索引 drop index 索引名; 3、创建组合索引 create index 索引名 on 表名(列名1,列名2); 4.查看目标表中已添加的索引 --在数据库中查找表名 阅读全文
摘要:
HBase启动和停止命令 HBase启动和停止命令启动HBase集群: bin/start-hbase.sh单独启动一个HMaster进程: bin/hbase-daemon.sh start master单独停止一个HMaster进程: bin/hbase-daemon.sh stop maste 阅读全文