报错:Exception:Message:ErrorCode:-2147204784,InnerException:System.Data.SqlClient.SqlException:LengthofLOBdata(115388)tobereplicatedexceedsconfiguredmaximum65536.Thestatementhasbeenterminated原因:是该数据库启动了SQLServer复制,而你尝试插入数据到一个配置了..
分类:
其他好文 时间:
2017-07-21 15:54:57
阅读次数:
165
jQuery.contains( container,contained ) 检查一个DOM元素是否为另一个元素的后代。只要是后代$.contains()就返回 true ,负责返回 false 。 jQuery.each( collection,callback(indexInArray,Valu ...
分类:
Web程序 时间:
2017-07-21 01:29:17
阅读次数:
201
网站地址:http://www.open-open.com/lib/view/open1414396787325.html 1. 安装完成后,设置用户名和密码 git config --global user.name "" git config --global user.email "" 2. ...
分类:
其他好文 时间:
2017-07-20 10:19:57
阅读次数:
131
语法:select * from table_name where dbms_lob.instr(字段名(clod类型),'查询条件',1,1) > 0; 语法解释:在Oracle中,可以使用instr函数对某个字符串进行判断,判断其是否含有指定的字符。其语法为:instr(sourceString ...
分类:
数据库 时间:
2017-07-19 15:28:40
阅读次数:
878
Python中的线程是操作系统的原生线程,Python虚拟机使用一个全局解释器锁(Global Interpreter Lock)来互斥线程对Python虚拟机的使用。为了支持多线程机制,一个基本的要求就是需要实现不同线程对共享资源访问的互斥,所以引入了GIL。GIL:在一个线程拥有了解释器的访问权 ...
分类:
编程语言 时间:
2017-07-18 16:44:34
阅读次数:
128
Python2 Download and install Python 2.7.11 64bit from Python's official site (https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi). Pleas ...
分类:
Windows程序 时间:
2017-07-18 10:15:43
阅读次数:
1437
1、去除字符串中的数字 Function aa(sr As Range)Set reg = CreateObject("vbscript.regexp")With reg.Global = True.Pattern = "\d+"End Withaa = reg.Replace(sr, "") En ...
分类:
编程语言 时间:
2017-07-18 00:08:10
阅读次数:
145
git 配置文件: .gitconfig 在当前用户目录下(/home/xxxx/.gitconfig)。 配置的命令: 用户名: git config --global user.name "xxxx" 邮箱: git config --global user.emal xxxxxxxxxx@xx ...
分类:
其他好文 时间:
2017-07-17 18:43:56
阅读次数:
111
group varint https://github.com/facebook/folly/blob/master/folly/docs/GroupVarint.md 这个是facebook的实现 https://www.slideshare.net/parallellabs/building-s ...
分类:
其他好文 时间:
2017-07-17 12:27:20
阅读次数:
232
翻译来源:https://www.codeproject.com/Articles/5242/XColorStatic-a-colorizing-static-control XColor Static是一个简单的基于静态框的控件,它提供字体更改,文本和背景颜色以及图标显示。 XColor Stat ...
分类:
其他好文 时间:
2017-07-16 23:32:36
阅读次数:
638