1 IF OBJECT_ID('TEMPDB..#TEMP')>0 2 DROP TABLE #TEMP 3 GO 4 IF OBJECT_ID('TEMPDB..#TEMP2')>0 5 DROP TABLE #TEMP2 6 GO 7 8 --模拟数据 9 SELECT *INTO #TEM.....
分类:
其他好文 时间:
2014-06-28 22:18:09
阅读次数:
261
postgresql的内存分配主要由shared_buffers、temp_buffers、work_mem、maintenance_work_mem参数控制。shared_buffers又可以叫做共享缓冲区,postgresql对数据操作时都要先将数据从磁盘读取到内存中,然后进行更新,最后再将数据...
分类:
数据库 时间:
2014-06-28 19:34:57
阅读次数:
347
Android提供了openFileInput()和openFileOutput()两种方法来简化,向应用程序沙箱”读取“和”写入“数据流。这两个方法只支持当前应用程序文件夹中的文件,否则将会抛出异常。String fileName=”myTest.temp“;//创建一个新的文件输出流,他是应用程...
分类:
其他好文 时间:
2014-06-28 17:41:07
阅读次数:
163
直接插入排序#include typedef int Keytype;typedef struct{ Keytype key; int data;}RecType;void InsertSort(RecType R[],int n){ int i; int j; RecType temp; f...
分类:
其他好文 时间:
2014-06-21 09:52:18
阅读次数:
223
这是一个Oracle的列转行函数:LISTAGG()先看示例代码:with temp as( select 'China' nation ,'Guangzhou' city from dual union all select 'China' nation ,'Shanghai' city fr.....
分类:
数据库 时间:
2014-06-20 19:13:41
阅读次数:
224
按表中的字段 UpdateTime 按每天进行编号,每天的编号都从1开始编号,并附带表的主键 cid,把数据存入临时表中WITH temp AS (SELECT cid,updatetime, ROW_NUMBER() OVER (PARTITION BY CONVERT(varchar(10),....
分类:
数据库 时间:
2014-06-20 16:37:46
阅读次数:
221
通过游标和SP_SPACEUSED来查看当前库所有表数据行、已分配空间总量、数据使用总量、索引使用总量、已分配但未使用总量 1 if OBJECT_ID ('tempdb..#temp') is not null 2 drop table #temp 3 go 4 CREATE TABLE #tem...
分类:
其他好文 时间:
2014-06-18 10:16:59
阅读次数:
242
#import
//交换函数
void swap(int x, int y)
{
printf("x=%d,y=%d",x,y);
int temp = 0;
temp = x;
x = y;
y = temp;
printf("x=%d,y=%d",x,y);
}
//
void swap2(int *x , int *y)...
分类:
编程语言 时间:
2014-06-18 07:10:13
阅读次数:
302
目的使得公司的Linux系统权限管理更规范,让每个用户拥有自己所该有的权限,防止因为某些用户的权限过大后的一些误操作,导致服务器的不正常运行。操作1、编辑Linux系统中的sudoers文件[root@Temp-2~]#vim/etc/sudoers
#Editbyroot
User_AliasNETMAN=net01,net02#用户别名
User..
分类:
系统相关 时间:
2014-06-18 00:38:08
阅读次数:
385
root用户切换到nowsun_old(普通用户)下,nowsun_old用户执行:sudo-l会出现以下错误[nowsun_old@Temp-2~]$sudo-l
[sudo]passwordfornowsun_old:
sudo:AccountexpiredorPAMconfiglacksan"account"sectionforsudo,contactyoursystemadministrator解决方法:1、通过查看,发现no..
分类:
其他好文 时间:
2014-06-18 00:34:09
阅读次数:
570