默认dbcc checkdb 只做数据库的检测数据库是否完好、不会主动做数据库的修复,要修复数据库,需要数据库设单用模式。 1、repair_allow_data_loss 可能导致数据丢失。 2、Repair_fast 未执行任何修复操作。 ...
分类:
数据库 时间:
2014-10-01 20:59:01
阅读次数:
194
二. 加密算法介绍对称加密算法对称加密算法用来对敏感数据等信息进行加密,经常使用的算法包含:DES(Data Encryption Standard):数据加密标准,速度较快,适用于加密大量数据的场合。3DES(Triple DES):是基于DES,对一块数据用三个不同的密钥进行三次加密,强度更高。...
分类:
其他好文 时间:
2014-09-28 22:29:35
阅读次数:
374
In the recent days, since the overwork made me exhaused, on arrival to home I will go to bed, which leads to loss of blogs that should have been written in the past days.
Now I make a summay to all...
分类:
数据库 时间:
2014-09-19 02:20:04
阅读次数:
323
二类分类器svm 的loss function 是 hinge loss:L(y)=max(0,1-t*y),t=+1 or -1,是标签属性. 对线性svm,y=w*x+b,其中w为权重,b为偏置项,在实际优化中,w,b是待优化的未知,通过优化损失函数,使得loss function最小,得到优化...
分类:
其他好文 时间:
2014-09-15 14:08:08
阅读次数:
229
Installed the Ubuntu 14.04.1 on the Dell Inspiron 1420, now this computer had installed three OS, Windows Vista, RHEL7, Ubuntu 14.04.1...
分类:
其他好文 时间:
2014-09-09 12:42:28
阅读次数:
306
{ ? ? "curly" ? ? ? ? : true, ? ? // true: Require {} for every new block or scope ? ? "eqeqeq" ? ? ? ?: true, ? ? // true: Require triple equals (===) for comparison ? ? "immed" ...
分类:
Web程序 时间:
2014-08-26 13:51:56
阅读次数:
323
题目链接
题意:给出长度为n的字符串,字符串由‘1’,‘0’,‘’组成,其中‘’可以任意替换为‘1’,‘0’,求不存在连续3个相同子串的字符串的最多个数。
思路:我们可以利用二进制的形式来表示字符串,进行DFS。利用位运算的左移来表示在‘*’位置上放置‘1’,注意在递归的过程中注意判断之否存在3个连续相同的子串。
代码:
#include
#include
#i...
分类:
其他好文 时间:
2014-08-18 16:29:12
阅读次数:
222
[Definitions]
Here is the recursive definition of a binary tree:
A binary tree is either the empty set or a triple T = (x,L,R), where x is a node and L and R are disjoint binary trees, neither of wh...
分类:
其他好文 时间:
2014-08-18 01:34:43
阅读次数:
216
二. 加密算法介绍对称加密算法对称加密算法用来对敏感数据等信息进行加密,经常使用的算法包含:DES(Data Encryption Standard):数据加密标准,速度较快,适用于加密大量数据的场合。3DES(Triple DES):是基于DES,对一块数据用三个不同的密钥进行三次加密,强度更高。...
分类:
其他好文 时间:
2014-08-06 22:36:22
阅读次数:
280
在重建控制文件之后,丢失了数据库补充日志信息(Missed Database Supplemental Log Information)...
分类:
数据库 时间:
2014-08-03 20:43:05
阅读次数:
360