一、参考[学习DBA 范计杰] https://www.modb.pro/db/40753 http://www.360doc.com/content/21/0121/05/70704971_958071999.shtml Purging RECYCLEBIN Running Fosrever (D ...
分类:
数据库 时间:
2021-02-05 10:49:47
阅读次数:
0
参考:http://www.voidcn.com/article/p-mckvczfj-ov.html 解决 Oracle 数据库文件自动扩展到 32G 后报错 ORA-01563 的问题 create or replace procedure auto_add_datafile is ALL_fi ...
分类:
数据库 时间:
2021-02-05 10:42:34
阅读次数:
0
一般的批量插的 sql语句数据违反唯一性约束时,出现重复数据将会直接报错并停止执行 insert into tb_name (field1,field2) values(f11,f12),(f21,f22)... 这种语句将会报错并停止执行 Warning: (1062, "Duplicate en ...
分类:
数据库 时间:
2021-02-04 12:25:31
阅读次数:
0
仅供自己学习 题目: You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the foll ...
分类:
其他好文 时间:
2021-02-04 12:10:58
阅读次数:
0
数据库集合 MD5码 加密方式:UPdate 表名 set (密码列名)=MD5(列名) 不加其他条件选择是全部加密 加where id=1 就是id为一加密 也可以在插入的时候加密 insert into 表名 values (id,'姓名',MD5('密码')) select 查询常用 数据库的 ...
分类:
数据库 时间:
2021-02-04 12:10:24
阅读次数:
0
set的常见用法 #include <set> set<int> st; set<int>::iterator it; //迭代器 st.insert(int); //插入一个值 st.erase(int); // 删除一个值 st.erase(iterator); //删除迭代器指向的值 st.e ...
分类:
其他好文 时间:
2021-02-03 11:06:06
阅读次数:
0
SQL里用INSERT INTO添加datetime类型数据 ——墨问苍生 insert into nlccmsDb.attendance values(3,2,'王老师的课堂','第二教学楼',123.121212,125.112212,3,'2021-2-2 13:12:21'); 注意最后一个 ...
分类:
数据库 时间:
2021-02-03 11:05:48
阅读次数:
0
在用Android StudioBuild项目时,提示:Could not resolve all files for configuration ':classpath'.Could not find com.android.tools. Error:Gradle: A problem occur ...
分类:
移动开发 时间:
2021-02-03 11:01:45
阅读次数:
0
题目 题意:将n个数分成k组,使得k组中的最大值最小。 题解:暴力DFS,但是要注意两个地方剪枝,首先在DFS的过程中判断当前的最大值是不是已经超过了已有答案。 第二个剪枝的地方比较triky,由于我们对k组没有顺序要求的,所以当剩下的组都是空的时候,我们只需要DFS第一个组。 class Solu ...
分类:
其他好文 时间:
2021-02-02 11:23:19
阅读次数:
0
CityGen3D - Procedural Unity Scenes From Real World Map Data With CityGen3D you can have terrain, roads and buildings all generated for you based on r ...
分类:
其他好文 时间:
2021-02-02 11:15:24
阅读次数:
0