码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
SQL中空值与NULL区别
很多人都有过这样的问题吧 在SQL中填充空值与NULL有什么区别现在我以一个实例给大家分享一下自己的想法 恳请大家给予批评也指正 谢谢创建一个监时表CREATE TABLE #temp ( name VARCHAR(50) )填充三条资料 如下:INSERT INTO #tempVALUES ...
分类:数据库   时间:2015-12-18 20:23:22    阅读次数:222
nagios check_oracle plugin (add check temp tablespace)
#!/bin/sh## latigid010@yahoo.com# 01/06/2000## This Nagios plugin was created to check Oracle status#export ORACLE_SID=testexport ORACLE_BASE=/test/u....
分类:移动开发   时间:2015-12-18 16:34:16    阅读次数:508
GsonWithoutObject 没有对象(脱离对象) 直接提取 ... gson json
GsonWithoutObject 脱离对象, 直接提取package temp;import tool.FileTool;import com.google.gson.JsonElement;import com.google.gson.JsonObject;import com.google.g...
分类:Web程序   时间:2015-12-17 21:00:52    阅读次数:147
java类型转化之Hbase ImmutableBytesWritable类型转String
Hbase 的ImmutableBytesWritable类型一般作为RowKey的类型;但也有时候会把值读出来;故有了转化为string一说.ImmutableBytesWritable RowKey;byte[] Temp = RowKey.get();String str = Bytes.to...
分类:编程语言   时间:2015-12-17 19:00:21    阅读次数:515
cuda内存总结
__shared__ 声明为共享内存,将会保存在共享内存中__constant__ 声明为常量内存,将会保存在常量内存中,常量内存是只读内存将数据从CPU拷贝到常量内存中时用cudaMemcpyToSymbol,例如cudaMemcpyToSymbol( s, temp_s,sizeof(Spher...
分类:其他好文   时间:2015-12-16 21:25:27    阅读次数:152
查询数据库中没有数据的表 暂时只能查询出来肉眼比对
CREATE TABLE ##temp( id int identity(1,1), TbName varchar(500) ) CREATE TABLE ##temp1( id int identity(1,1), TbName varchar(500) ) go inser...
分类:数据库   时间:2015-12-16 18:56:10    阅读次数:127
时间复杂度的计算
1.冒泡排序void bubble_sort(int a[], int n){ int i, j, temp; for (j = 0; j a[i + 1]) { temp = a[i]; a[i] = ...
分类:其他好文   时间:2015-12-16 15:23:42    阅读次数:119
重新组织函数
提炼函数(extract method)内联函数(inline method)内联临时变量(inline temp)以查询取代临时变量(replace temp with query)引入解释性变量(introduce explaining variable)分解临时变量(split tempora...
分类:其他好文   时间:2015-12-16 12:20:14    阅读次数:153
GDI+ 学习记录(26): 显示图像 - Image
//显示图像var g: TGPGraphics; img: TGPImage;begin g := TGPGraphics.Create(Self.Canvas.Handle); img := TGPImage.Create('c:\temp\x.jpg'); g.DrawImage(img,10...
分类:其他好文   时间:2015-12-15 18:10:31    阅读次数:203
交换变量方法总结
平常在各种排序算法中常需要交换元素的位置,那么如何能够准确高效地交换两个元素的位置呢?Java/C/C++中交换两个变量值有三种方法。下面具体分析一下。 1)临时变量temp---普通,推荐1 int temp = a;2 a = b;3 b = temp; 2)加减运算(不能用乘除,会有精...
分类:其他好文   时间:2015-12-14 22:56:47    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!