BACKGROUNDMany processors include a time stamp count (TSC) counter which is typically implemented as a counter that increments at a fixed rate. Some k...
分类:
其他好文 时间:
2014-06-18 22:19:29
阅读次数:
233
插入 日期时间 循环插入declare total date:= trunc(sysdate-1) ; begin for i_count in 1..10000 LOOP insert into DQ_DATE(date_time) values ( total ); total...
分类:
数据库 时间:
2014-06-18 21:25:39
阅读次数:
302
SQL> select count(*) from v$session #连接数SQL> Select count(*) from v$session where status='ACTIVE' #并发连接数SQL> show parameter processes #最大连接 process:.....
分类:
数据库 时间:
2014-06-18 20:28:17
阅读次数:
289
std::set, 模板写的平衡二叉树的集合容器, method: insert, count,std:map,映射和多重映射基于某一类型Key的键集的存在,提供对T类型的数据进行快速和高效的检索std::vector,存放任意类型的动态数组的容器, .push_back(elen)尾部加入一个.....
分类:
编程语言 时间:
2014-06-18 20:24:10
阅读次数:
317
组合式写法:animation: name duration timing-function delay iteration-count direction;拆分式写法:animation-name: 动画名称; animation-duration: 动画作用时间; anima...
分类:
其他好文 时间:
2014-06-18 19:11:14
阅读次数:
710
在项目开发中,我们做的大地图,一个手指头按下滑动可以拖动大地图,两个手指头按下张开或者闭合,可以放大和缩小地图在实现这个功能的时候,需要使用到cocos2d-x的多点触控功能。多点触控事件,并不是说你按下了两个手指,执行ccTouchesMoved的时候,pTouches的count为2,这样如果单...
分类:
其他好文 时间:
2014-06-18 19:02:40
阅读次数:
172
计算你拥有动物的总数目与“在pet表中有多少行?”是同样的问题,因为每个宠物有一个记录。COUNT(*)函数计算行数,所以计算动物数目的查询应为:mysql> SELECT COUNT(*) FROM pet;+----------+| COUNT(*) |+----------+| 9 |+---...
分类:
数据库 时间:
2014-06-18 18:58:31
阅读次数:
172
查询及删除重复记录的SQL语句1、查找表中多余的重复记录,重复记录是根据单个字段(Id)来判断select * from 表 where Id in (select Id from 表 group by Id having count(Id) > 1)2、删除表中多余的重复记录,重复记录是根据单个字...
分类:
数据库 时间:
2014-06-18 17:09:56
阅读次数:
241
许多文件系统都是通过generic_file_write()函数来实现文件对象的write方法,即write(库函数)->sys_write()->generic_file_write():
ssize_t generic_file_write(struct file *file, const char __user *buf,
size_t count, loff_t *ppos)...
分类:
其他好文 时间:
2014-06-16 22:47:52
阅读次数:
203
经常需要根据IP地址统计apache站点访问量,最基本的脚本.根据IP访问量降序排列:#!/bin/bash
#Script_name:access_count
acc_log=/usr/local/apache2/logs/access_log
/bin/awk‘{print$1}‘$acc_log|sort|uniq-c|sort-nr执行效果:[root@zabbix~]#shaccess_count
94989192.168.1..
分类:
移动开发 时间:
2014-06-16 18:18:50
阅读次数:
332