To perform a cold boot (also called a "hard boot") means to start up a computer that is turned off. It is often used in contrast to a warm boot, which... ...
分类:
其他好文 时间:
2020-07-18 00:38:36
阅读次数:
268
1.注意事项 1.创建索引时会将数据重新进行排序 2.创建索引会占用磁盘空间,所以索引不是越多越好 3.在同一列上避免创建多种索引 4.避免在数据很长的字段上创建索引,如果要创建就创建前缀索引 2.前缀索引 # 根据前四个字符创建前缀索引 mysql> alter table test add in ...
分类:
数据库 时间:
2020-07-17 22:31:51
阅读次数:
121
https://codeforces.com/problemset/problem/489/C C. Given Length and Sum of Digits... You have a positive integer m and a non-negative integer s. Your ...
分类:
其他好文 时间:
2020-07-17 22:18:10
阅读次数:
71
The k-means algorithm captures the insight that each point in a cluster should be near to the center of that cluster. It works like this: first we cho ...
分类:
其他好文 时间:
2020-07-17 21:58:52
阅读次数:
87
XProtect installer may fail with the error "Category does not exist" or "Cannot load Counter Name data because an invalid index" When running the XPro ...
分类:
其他好文 时间:
2020-07-17 19:49:17
阅读次数:
124
主从复制线程管理命令 启动所有线程 start slave; 关闭所有线程 stop slave; 单独启停SQL线程 start slave sql_thread; stop slave sql_thread; 单独启停IO线程 satrt slave io_thread; stop slave ...
分类:
其他好文 时间:
2020-07-17 14:15:00
阅读次数:
82
.gitignore常用配置 #Maven beginning target/ pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup pom.xml.next release.properties dependency-reduced-po ...
分类:
其他好文 时间:
2020-07-17 09:28:37
阅读次数:
83
--语句新建一个定时任务 declare job number;BEGIN DBMS_JOB.SUBMIT( JOB => job, /*自动生成JOB_ID*/ WHAT => 'p_monitor_tablespace;', /*需要执行的存储过程名称或SQL语句*/ NEXT_DATE => ...
分类:
数据库 时间:
2020-07-16 21:24:07
阅读次数:
107
Layout「差分约束」 题目描述 和人类一样,奶牛们在打饭的时候喜欢和朋友站得很近。约翰的编号为 1到 n 的 n(2<=n<=1000) 只奶牛正打算排队打饭。现在请你来安排她们,让她们在数轴上排好队。奶牛的弹性很好,同一个坐标可以站无限只奶牛,排队的顺序必须和她们编号的顺序一致。有 M 对奶牛 ...
分类:
其他好文 时间:
2020-07-16 21:10:27
阅读次数:
60
使用vscode编写C/C++代码(官网简单版)官网下载vscodevscode官网下载c++编译器MinGWMinGW官网下载地址也可以使用压缩包,直接解压就可以使用(推荐)MinGW压缩包下载开始安装安装MinGW解压压缩添加环境变量找到安装目录下的bin目录(C:\MinGW\bin),添加到系统环境变量(win7举例)运行cmd检查环境变量是否成功输入g++-v回车注意是在末尾添加英文的分
分类:
编程语言 时间:
2020-07-16 18:19:06
阅读次数:
169