码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
wmi详解,RPC和防火墙
135端口:Microsoft在这个端口运行DCE RPC end-point mapper为它的DCOM服务。这与UNIX 111端口的功能很相似。使用DCOM和RPC的服务利用计算机上的end-point mapper注册它们的位置。远端客户连接到计算机时,它们查找end-point mappe...
分类:其他好文   时间:2014-07-18 20:05:06    阅读次数:938
T-SQL多个小计+合计,分类汇总
select case when grouping(姓名)=1 then '合计' else cast(姓名 as varchar) end 姓名, case when grouping(学期)=1 and grouping(姓名)=0 then '姓名小计' else cast(学...
分类:数据库   时间:2014-07-18 17:10:30    阅读次数:303
存储过程
DECLAREPROCEDUREdept_insert_procASPRAGMAAUTONOMOUS_TRANSACTION;--自助事物BEGININSERTINTOdept(deptno,dname,loc)values(60,‘MLDN‘,‘北京‘);commit;END;BEGININSERTINTOdept(deptno,dname,loc)values(50,‘开发部‘,‘天津‘);dept_insert_proc();--调用存储过程ROLLBACK;END;/
分类:其他好文   时间:2014-07-18 17:05:00    阅读次数:195
GCD(2)
```objc#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *action;@end@implementation ...
分类:其他好文   时间:2014-07-18 14:26:27    阅读次数:247
leetcode 合并区间
使用最简单的排序方法; 1 /** 2 * Definition for an interval. 3 * public class Interval { 4 * int start; 5 * int end; 6 * Interval() { start = 0;...
分类:其他好文   时间:2014-07-18 10:26:09    阅读次数:188
sql:日期操作注意的,如果以字符串转日期时的函数,因为数据量大,会出问题
---1.以日期字符操作转换日期 如果是VIP1生日不对,可以以上传的数据日期为生日begindeclare @NowBirthday datetime, @birthday datetime,@stat datetime,@end datetime,@statbirthday datetime,....
分类:数据库   时间:2014-07-17 18:00:31    阅读次数:310
SUBLIME TEXT 2中,光标移入移出括号的快捷键设置
无赖右方向键→和End键都在键盘的另一边,每次输入完一个函数,光标在各种括号中间,有什么更好的方式将光标移出来呢?在Sublime Text 2中,我们可以自己设置快捷键: { "keys": ["ctrl+alt+space"], "command": "move", "args": {"by":...
分类:其他好文   时间:2014-07-17 17:28:58    阅读次数:228
Linux Shell sort 指定排序第几列
ip.txt 里存储着ip信息 统计排序后取前10条awk '{cnt[$1]++} END{for (ip in cnt) print ip":"cnt[ip]}' ip.txt | sort -k 2 -rn -t":" | head -n 10awk '{cnt[$1]++} END{for ...
分类:系统相关   时间:2014-07-17 13:32:35    阅读次数:12747
[POI 2001+2014acm上海邀请赛]Gold Mine/Beam Cannon 线段树+扫描线
Description  Byteman, one of the most deserving employee of The Goldmine of Byteland, is about to retire by the end of the year. The Goldmine management would like to reward him in acknowledgment...
分类:其他好文   时间:2014-07-17 10:24:12    阅读次数:307
CRT detected that the application wrote to memory after end of heap buffer.
很多人的解释都不一样, 我碰到的问题是,开辟的内存空间小于操作的内存空间.也就是说,我free的内存越界了.这是我开辟链表结构体内存的代码: 1 PNODE Create() { 2 int len; //total count of nodes to be created. 3 ...
分类:移动开发   时间:2014-07-17 09:57:34    阅读次数:279
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!