问题 数据库大小写不敏感 库名,表名敏感: 配置参数lower_case_table_names 可选值 【0,1】0不敏感,1敏感 数据敏感: 排序规则: *_bin: 表示的是binary case sensitive collation,也就是说是区分大小写。 *_ci: case insen ...
分类:
数据库 时间:
2021-06-21 20:31:26
阅读次数:
0
脚本位置 cd /home/hadoop/bin 脚本内容 vi kafka.sh #输入以下内容 #!/bin/bash case $1 in "start" ){ for(( i = 1;i <= 3;i = $i +1));do echo hadoop0$i kafka $1 ssh hado ...
分类:
其他好文 时间:
2021-06-20 18:41:23
阅读次数:
0
Introduction# When WPF application launched, it could take a while for a current language runtime (CLR) to initialize .NET Framework. As a result, fir ...
查看是否区分大小写 show Variables like '%table_names' 查看lower_case_table_names的值,0代表区分,1代表不区分 修改方法 1.用ROOT登录,修改/etc/my.cnf 2.在[mysqld]下加入一行:lower_case_table_na ...
分类:
数据库 时间:
2021-06-17 17:06:18
阅读次数:
0
##break和continue关键字的使用 ||使用范围|循环中使用的作用点(不通点)|相同点| |:-:|:-:|:-:|:-:| |break|switch-case中|结束当前循环|关键字后面不能声明执行语句| |break|循环结构中|结束当前循环|关键字后面不能声明执行语句| |cont ...
分类:
其他好文 时间:
2021-06-17 17:02:03
阅读次数:
0
订阅发布机制 github地址: https://github.com/mroderick/PubSubJS import PubSub from 'pubsub-js' // or when using CommonJS const PubSub = require('pubsub-js'); / ...
分类:
其他好文 时间:
2021-06-17 16:36:50
阅读次数:
0
1 分组求TopN 一、先看数据: 使用HiveSQL常用的方式为: Select * from table, row_number() over(partition by item order by score desc) rank where rank<=2; 二、输出结果为: 三、解析:row ...
分类:
数据库 时间:
2021-06-13 10:48:09
阅读次数:
0
1. Units(单位) 配置大小单位,开头定义了一些基本的度量单位,只支持bytes,不支持bit 大小写不敏感 # Note on units: when memory size is needed, it is possible to specify # it in the usual for ...
分类:
其他好文 时间:
2021-06-13 10:22:30
阅读次数:
0
Discovering, analyzing, structuring and mining data Statistical hypotheses validation and model performance analysis Developing neural network models ...
分类:
其他好文 时间:
2021-06-13 09:42:05
阅读次数:
0
SELECT (case when a.colorder=1 then d.name else null end) 表名, a.colorder 字段序号,a.name 字段名, (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then ...
分类:
数据库 时间:
2021-06-07 20:27:53
阅读次数:
0