题目描述: Kids in kindergarten enjoy playing a game called Hawk-and-Chicken. But there always exists a big problem: every kid in this game want to play th ...
分类:
其他好文 时间:
2021-04-05 12:24:28
阅读次数:
0
如果我们往一个非空的目录下 clone git 项目,就会提示错误信息: fatal: destination path '.' already exists and is not an empty directory. 解决的办法是: 1. 进入非空目录,假设是 /workdir/proj1 2. ...
分类:
其他好文 时间:
2021-04-05 12:21:02
阅读次数:
0
以内核模块 drbd 为例: 1、创建 /etc/modules-load.d/drbd.conf 中,直接写模块名: drbd 2、创建 /etc/sysconfig/modules/drbd.modules:内容如下 # drbd module exists? /usr/sbin/modinfo ...
分类:
其他好文 时间:
2021-03-29 11:51:34
阅读次数:
0
代码如下 -- 如果存在testtt_insert同名的存储过程,删除 DROP PROCEDURE IF EXISTS testtt_insert; DELIMITER ;; -- 创建一个存储过程 CREATE PROCEDURE testtt_insert () BEGIN -- 定义一个i, ...
分类:
其他好文 时间:
2021-03-29 11:39:37
阅读次数:
0
在新的springboot项目中,如果在mybatis中使用了ehcache后,再第二次使用ehcache,会提示错误 Another CacheManager with same name 'default' already exists in the same VM. Please provid ...
分类:
编程语言 时间:
2021-03-18 13:59:58
阅读次数:
0
想起一个很好听的名字关注 22017.12.27 18:16:13字数 187阅读 72,109 今天在提交Git的时候,遇到了几个问题,记录一下,方便以后查找O(∩_∩)O 第一个问题 git remote add origin************** fatal: remote origin ...
分类:
其他好文 时间:
2021-03-16 14:12:17
阅读次数:
0
场景 我们有一个导入表格的功能,是为了给X战警加入【泽维尔天才青少年学校】开课用的。 正常导入的表格是这个样子的 这里有一行数据,为了给金刚狼开课,让他能跟X教授欢乐的学习。 异常 但是,有人在里边加入了迪迦奥特曼图片!!! 我们都知道迪迦奥特曼和我们的X战警不是一个次元的,奥特曼怎么能当X战警呢? ...
分类:
其他好文 时间:
2021-03-05 13:29:37
阅读次数:
0
为什么用Zookeeper 官方地址:https://zookeeper.apache.org/doc/current/zookeeperOver.html redis不能保证实时一致性和强一致性(最终一致性) ZooKeeper实施对高性能,高可用性,严格排序的访问给予了高度重视 ZooKeepe ...
分类:
其他好文 时间:
2021-03-03 11:54:16
阅读次数:
0
https://mp.weixin.qq.com/s/XY1lS4mxEf7BTf8UnFmaFA 根据汇总表的分区字段自动填入指定的分区文件中: 对于分区表的文件,例如A区.xlsx、B区.xlsx等,需要先将3行之后已经存在的数据删除后再进行写入。 B区.xlsx在自动填入后,结果如下: 其实初 ...
分类:
其他好文 时间:
2021-03-02 12:13:55
阅读次数:
0
查看数据表的信息,只能算是优化用户体验 --用户表 if exists(select * from sysobjects where name = 'bi_user') drop table bi_user create table bi_user ( user_id int not null pr ...
分类:
其他好文 时间:
2021-03-01 13:44:56
阅读次数:
0