偶尔发现数据库中发生如下等待事件,随查询文档整理出来: control file sequential read Reading from the control file. This happens in many cases. For example, while: 1、Making a bac ...
分类:
其他好文 时间:
2019-03-29 11:54:05
阅读次数:
173
#!/usr/bin/env python # -*- coding:UTF-8 -*- #用法 # python CrackZipStrong.py -f ./sqlmap.zip -d dictionary.txt # ('Found Password:', '123456') import z... ...
分类:
其他好文 时间:
2019-03-25 00:57:19
阅读次数:
181
给定n,m。让你用O(log(n))以下时间算出ans。 打表,推出 ans[i] = 2^(i-1) + f[i-2] 故 i奇数:ans[i] = 2^(i-1) + 2^(i-3) ... + 1; i偶数:ans[i] = 2^(i-1) + 2^(i-3) ... + 2; 故可以用等比数 ...
分类:
其他好文 时间:
2019-03-22 00:33:13
阅读次数:
118
买了一本asp.net mvc 企业级实战的书籍,最近在学习Entity Framework,写个博客记录一下 根据书上例子的进行练习 下面是书上提供的数据库文件 USE [Northwind] GO /****** Object: Table [dbo].[Suppliers] Script Da ...
分类:
其他好文 时间:
2019-03-21 21:49:15
阅读次数:
168
阿里云反馈的慢SQL,执行计划返回如下:Impossible WHERE noticed after reading const tables sql很简单: 而且该表的request_id创建了唯一索引:很明显,这个字段是保持幂等操作的,通过数据库的唯一索引实现; 每次数据落地前,都要执行该SQL ...
分类:
其他好文 时间:
2019-03-21 20:23:59
阅读次数:
248
Encoding类 表示字符编码 1.字符串转换成字节数组byte[] 2.字节数组换成字符串 ...
分类:
编程语言 时间:
2019-03-21 17:19:43
阅读次数:
201
CS 659 Image ProcessingHomework #3Covering Lectures 7, 8, 9 and Reading Material HW3RNOTES: Submit only the homework “solution” (do not include these ...
分类:
其他好文 时间:
2019-03-17 19:47:22
阅读次数:
169
链接:https://codeforces.com/contest/1136/ A - Nastya Is Reading a Book - [二分] B - Nastya Is Playing Computer Games - [思维题] 题解:我只想说,这道思维题有点东西…… AC代码: ...
分类:
其他好文 时间:
2019-03-16 09:45:16
阅读次数:
181
相当于Java中的interface 定义的接口,但是 比Java中的interface要好 调用 ...