码迷,mamicode.com
首页 >  
搜索关键字:ora-04031 obj stat memo version count    ( 69204个结果
sp_executesql介绍和使用(转)
execute相信大家都用的用熟了,简写为exec,除了用来执行存储过程,一般都用来执行动态Sql sp_executesql,sql2005中引入的新的系统存储过程,也是用来处理动态sql的, 如: exec sp_executesql @sql, N'@count int out,@id var...
分类:数据库   时间:2014-07-16 23:09:15    阅读次数:268
Git Note - git tag
git tag is used to create labels, usually for version numbers. Format: git tag Example: git tag v0.1 HEAD is to create a version number v0.1 on curren...
分类:其他好文   时间:2014-07-10 14:29:01    阅读次数:213
原生javascript兼容性问题
1.获取样式表里面的width,border color 之类的css(不是行间) 主要是IE6-7支持currentStyle,标准浏览器支持getComputedStyle;实例:封装函数复制代码代码如下:function getStyle(obj,name){if(obj.currentSty...
分类:编程语言   时间:2014-07-10 13:58:10    阅读次数:295
IPv4分析
IPv4的头部格式: 1. Version 版本号,默认是4。 2. IHL(Internet Header Length) 就是IPv4头部长度。这个长度的单位是32bit,一般是5,那么头部的长度就是5x32bit=160bit。 3. DSCP(Differentiated Services ...
分类:其他好文   时间:2014-07-10 13:46:14    阅读次数:338
【POJ】2418 Hardwood Species
简单字典树。 1 #include 2 #include 3 #include 4 5 #define MAXN 128 6 7 typedef struct Trie { 8 int count; 9 Trie *next[MAXN];10 Trie() {11 ...
分类:其他好文   时间:2014-07-10 13:43:34    阅读次数:239
Configure Pi as simulation hardware for Simulink
1. Only version not older than R2013 supports Raspberry Pi. First, download support package in Matlab: http://www.mathworks.cn/matlabcentral/fx_files/...
分类:其他好文   时间:2014-07-10 13:42:50    阅读次数:338
Can't locate Switch.pm in @INC
the perl version (5.14) shipped with 12.10 does not include the Switch.pm module needed while building WebKiT-GTK.How to install Perl Switch.pm modu.....
分类:其他好文   时间:2014-07-10 13:26:53    阅读次数:453
linux用dd测试磁盘速度
[root@localhost ~]# time dd if=/dev/zero bs=1024 count=1000000 of=/1Gb.file记录了1000000+0 的读入记录了1000000+0 的写出1024000000字节(1.0 GB)已复制,11.6493 秒,87.9 MB/秒...
分类:系统相关   时间:2014-07-10 12:48:45    阅读次数:325
css属性
属性(Properties)版本(Version)兼容性(Compatibility)简介(Description)文本属性 Text Propertiestext-indentCSS1IE4+ , NS4+检索或设置对象中的文本的缩进。text-overflowIE专有属性IE6+设置或检索是否使...
分类:Web程序   时间:2014-07-10 12:23:09    阅读次数:225
单表头,多表头导出excel
一、单表头 1 #region 导出 2 if (this.dgvInfo.Rows.Count > 0) 3 { 4 SaveFileDialog saveFileDialog = new SaveFileDialo...
分类:其他好文   时间:2014-07-10 12:12:06    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!