码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
oracle创建表空间
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m max...
分类:数据库   时间:2015-09-20 01:34:32    阅读次数:209
oracle语言基础
一、语言分类1.DML(Data Manipulation Language,数据操作语言):用于对数据的操作。 DML包括:(1)SELECT:查询数据select * from temp; (2)INSERT:增加数据到数据库insert into temp values(4,'...
分类:数据库   时间:2015-09-19 16:30:10    阅读次数:165
找出连续子数最大和
#include#include#includeusing namespace std;int sumOfSub(int* a,int len){ if(a==NULL||lensum) sum=temp; } return sum;}int main(){ int a[10]={1,-2,3,.....
分类:其他好文   时间:2015-09-18 21:54:57    阅读次数:148
Oracle unable to extend temp segment by 128 in tablespace TEMP
Description Error report: SQL Error: ORA-12801: error signaled in parallel query server P010 ORA-01652: unable to extend temp segment by 128 in tab...
分类:数据库   时间:2015-09-18 10:26:24    阅读次数:340
StringToInt
public class Stringtoint { public static void stringtoint(String s){ //判断字符串是否为null和是否为空 if(s == null || s.length() == 0) return; char[] temp =...
分类:其他好文   时间:2015-09-17 23:07:16    阅读次数:294
研磨数据结构与算法-02各种排序算法
一,冒泡排序法publicclassBubbleSort{ publicstaticlong[]sort(long[]arr){ longtemp; for(inti=0;i<arr.length-1;i++){ for(intj=arr.length-1;j>i;j--){ if(arr[j]<arr[j-1]){ temp=arr[j]; arr[j]=arr[j-1]; arr[j-1]=temp; } } } ..
分类:编程语言   时间:2015-09-17 21:43:11    阅读次数:202
归并排序方法
#include using namespace std;void mergearray(int a[], int first, int mid, int last, int temp[]){ int i = first, j = mid + 1; int m = mid, n = last; in...
分类:编程语言   时间:2015-09-17 21:31:19    阅读次数:172
一维指针和二维指针
今天从函数传参的角度来理解指针。如果想交换两个变量a,b的值,我们会这么做: int temp; temp = a; a = b; b = a; 如果要把以上功能封装成一个函数,最开始的反应是: func(int a,int b) { int temp; temp = a; a = b; b = a...
分类:其他好文   时间:2015-09-17 17:32:17    阅读次数:267
代码片段
1,删除文件夹下所有文件,保留文件夹。 string dir = @"F:\temp"; foreach (string d in Directory.GetFileSystemEntries(dir)) { if (File...
分类:其他好文   时间:2015-09-17 15:12:38    阅读次数:113
[c++primer][07]函数
7.1 函数的定义函数调用做了两件事情:用对应的实参初始化函数的形参,并将控制权转移给被调函数。// return the greatest common divisor int gcd(int v1, int v2) { while (v2) { int temp = v2; ...
分类:编程语言   时间:2015-09-17 06:23:05    阅读次数:362
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!