码迷,mamicode.com
首页 >  
搜索关键字:hive union all    ( 31352个结果
Hadoop基础(四十六):DML 数据操作
1 数据导入 1.1 向表中装载数据(Load) 1.语法 hive> load data [local] inpath '/opt/module/datas/student.txt' [overwrite] into table student [partition (partcol1=val1, ...
分类:其他好文   时间:2020-07-22 20:27:55    阅读次数:71
1338. Reduce Array Size to The Half
Given an array arr. You can choose a set of integers and remove all the occurrences of these integers in the array. Return the minimum size of the set ...
分类:其他好文   时间:2020-07-22 20:09:57    阅读次数:70
238. Product of Array Except Self
Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except n ...
分类:其他好文   时间:2020-07-22 15:50:36    阅读次数:67
1233. Remove Sub-Folders from the Filesystem
Given a list of folders, remove all sub-folders in those folders and return in any order the folders after removing. If a folder[i] is located within  ...
分类:其他好文   时间:2020-07-22 15:45:22    阅读次数:74
提权命令
总是忘记,自己整理。 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; #开启mysql远程访问GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root"; #开启m ...
分类:其他好文   时间:2020-07-22 11:13:08    阅读次数:81
Scala(一)【安装和IDEA中开发】
一.下载 下载地址:https://www.scala-lang.org/download/all.html 下载对应得版本,有linux安装包、windows安装包,源码包,按需下载 二.windows安装 1)首先确保jdk1.8安装成功 2)解压文件到指定目录 3)配置环境变量 4)验证,如下 ...
分类:其他好文   时间:2020-07-22 02:13:37    阅读次数:107
mysql常用操作
##1、创建数据库 create database xxx; 创建后台数据库 ##2、创建用户、授权 grant all on 数据库.* to 用户@'%'identified by 'password'; GRANT SELECT, INSERT, UPDATE, REFERENCES, DEL ...
分类:数据库   时间:2020-07-22 01:49:24    阅读次数:102
Promise用法详解
Promise是一个构造函数,自己身上有all、reject、resolve这几个眼熟的方法,原型上有then、catch等同样很眼熟的方法。 那就new一个 var p = new Promise(function(resolve, reject){ //做一些异步操作 setTimeout(fu ...
分类:其他好文   时间:2020-07-21 22:52:13    阅读次数:90
hive 调优
1,hive架构 1)client,客户端 2)Driver:驱动器 3)解析器,编译器,优化器,执行器 4)底层默认使用mr作为数据处理引擎 5)元数据,通常配置mysql来存储,这样支持多个客户端的访问 2,hive和传统数据库的比较 相同之处:都拥有类似的查询语言 不同之处: 1)数据存储位置 ...
分类:其他好文   时间:2020-07-21 22:25:52    阅读次数:76
交换机vlan
交换机配置 172.10.103.2 可以ping通172.10.103.82 172.10.104.81 不可以ping通172.10.104.82 原因是 交换机没有放通vlan1,执行 port trunk allow-pass vlan all ...
分类:其他好文   时间:2020-07-21 14:26:25    阅读次数:88
31352条   上一页 1 ... 59 60 61 62 63 ... 3136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!