Solaris 10 11/06 这个礼拜公布啦,这次的Update包括了两个很重要的特性:Logical Domains和 Solaris Trusted Extensions。 Logical Domains是专门为Sun的UltraSPARC T1(Niagara)专门设计的一个虚拟技术,能够...
分类:
其他好文 时间:
2014-08-17 19:52:52
阅读次数:
210
SQL>SELECTTABLE_NAME,(BLOCKS*8192/1024/1024)-(NUM_ROWS*AVG_ROW_LEN/1024/1024)"DatalowerthanHWMinMB"FROMUSER_TABLESWHEREtable_name='T1';TABLE_NAMEDatal...
分类:
其他好文 时间:
2014-08-15 17:46:29
阅读次数:
230
表t1,t2各自生成100万条记录。表引擎 myiasm ,查询语句select * from t1 where id2 in (select id2 from t2 )查询速度 2.x秒查询语句select t1.* from t1,t2 where t1.id2=t2.id2查询速度2.x秒==...
分类:
数据库 时间:
2014-08-15 14:20:59
阅读次数:
192
【题目简述】: 给定两个字符串s1s2……sn 和 t1 t2 ……tn。求出这两个字符串最长的公共给你子序列的长度。字符串 s1 s2 ……sn的子序列指可以表示为si1 si2…… si n(i1
列如:
n = 4;
m = 4
s = " abcd "
t = " becd "
输出:
3(即:bcd)
【分析】:这个经典的最长公共子序列问题,我们可以用...
分类:
其他好文 时间:
2014-08-15 12:56:08
阅读次数:
166
//使用veth
//1.创建两块虚拟网卡veth1、veth2,然后点对点连接,此后两块网卡的数据会互相发送到对方
$ ip link add veth1 type veth peer name veth2
//2.创建网络命名空间t1
$ ip netns add t1
//3.将veth0加入t1,此时veth0便看不到了,因为被加入到其他命名空间中了
$ ip link set vet...
分类:
其他好文 时间:
2014-08-14 20:45:09
阅读次数:
327
1.MySQL基础操作 一:MySQL基础操作 1:MySQL表复制 复制表结构 + 复制表数据 create table t3 like t1; --创建一个和t1一样的表,用like(表结构也一样) inse...
分类:
数据库 时间:
2014-08-14 16:37:48
阅读次数:
295
有时,当把c风格的不同字符串去实例化函数模版的同一个模版參数时,在实參演绎的过程中常常会发生意想不到的事情,那就是编译失败,并报错类型不匹配。正如以下的样例一样:#includeusing namespace std;/**匹配測试*/templateint ref_fun(T & t1,T & t...
分类:
其他好文 时间:
2014-08-14 13:57:58
阅读次数:
205
题解:因为模比较小,所以一定会产生循环节,所有先计算循环节,然后直接求解。#include int main(){ int a,b,n,f[50]; f[1]=f[2]=1; while(scanf("%d%d%d",&a,&b,&n),a|b|n){ int t1,t2,...
分类:
其他好文 时间:
2014-08-14 10:42:18
阅读次数:
170
/// /// 转换实体对象 /// /// 转化的实体 /// 转换后的实体 /// /// /// public T2 ParstModel(T1 t1, T2 t...
分类:
其他好文 时间:
2014-08-13 18:35:06
阅读次数:
280
原文:MySQL数据库优化mysql表复制 复制表结构+复制表数据 mysql> create table t3 like t1;
mysql> insert into t3 select * from t1; mysql索引...
分类:
数据库 时间:
2014-08-13 10:24:05
阅读次数:
325