码迷,mamicode.com
首页 >  
搜索关键字:temp tablespace    ( 8772个结果
C 语言 const 关键字
#include int main(void){int i = 1;int j = 100;const int * temp = &i;printf("%d\n",*temp);i = 2;printf("%d\n",*temp);temp = &j;printf("%d\n",*temp);ret...
分类:其他好文   时间:2014-05-26 23:11:42    阅读次数:330
冒泡排序
1 int[] arr = {1,4,2,5,7,3}; 2 int temp = 0; 3 //升序 4 for (int i = arr.length-1; i > 0; --i) { 5 for (int j = 0; j i; j--) {17 if(arr[...
分类:其他好文   时间:2014-05-26 15:37:21    阅读次数:266
mongo数据库的导入导出
http://www.iwangzheng.com/[root@a02]$show dbs;changhong_tv_cms 0.078GB[root@a02]$ mongodump -d changhong_tv_cms -o/temp/db_mongo.20140521.mongo/worksp...
分类:数据库   时间:2014-05-26 10:30:39    阅读次数:407
堆排序
#include#include#includeusing namespace std; //void MinHeapFixup(int a[], int i)//{// int j ,temp;// temp = a[i];// j = (i-1)/2;// while(j >= 0 && i !...
分类:其他好文   时间:2014-05-26 10:26:08    阅读次数:212
Selenium Webdriver 学习总结-Advanced Usage-Cookie、Profile(七)
1、webdriver如何处理profile 当我们初始化Firefox WebDriver时,可以使用一个已存在的Profile或一个新的Profile,WebDriver每次使用前都会复制一份(win7 默认存放路径C:\Users\ADMINI~1\AppData\Local\Temp\anonymous5354649999399361803webdriver-profile),如果没有指定firefox profile,webdriver会创建一个空的Profile并使用它,所以我们在每次webd...
分类:Web程序   时间:2014-05-26 06:14:22    阅读次数:392
oracle基本语句(第五章、数据库逻辑存储结构管理)
1、使用SYS用户以SYSDBA身份登录到SQL Plus,使用视图V$TABLESPACE查看表空间信息SELECT * FROMV$TABLESPACE;2、查看视图DBA_TABLESPACES查看所有表空间的属性和在线状态SELECT TABLESPACE_NAME, CONTENTS, S...
分类:数据库   时间:2014-05-26 00:59:25    阅读次数:293
DB2中如何将非自动存储转换成自动存储空间管理方式
DB210引入根据温度管理数据存储的表空间更管理方式,但是需要数据库启用自动存储管理,具体在存储路径在某个目录下即可,要讲非自动存储的表空间转换成自动存储的管理方式需要两个步骤,尤其是从低版本升级过来的数据库。ALTERDATABASEEMPLOYEEADDSTORAGEON‘/data‘这样即可,但..
分类:数据库   时间:2014-05-24 16:37:36    阅读次数:281
list.remove(obj)
从一个List中移除重复的数据使用迭代方法会报异常:java.util.ConcurrentModificationExceptionMap temp = new HashMap();for (GroupRule rule : ruleList) { String ruleName = rule.....
分类:其他好文   时间:2014-05-23 05:41:56    阅读次数:187
数据库一列多行转一行多列
如题: select max(case when name='1' then [temp] else null end) as temp1 , max(case when name='2' then [temp] else null end) as temp2,  max(case when name='3' then [temp] else null end) as...
分类:数据库   时间:2014-05-23 02:37:04    阅读次数:734
mvc 客户端验证
@model MvcApplication1.Models.ViewClass@{ ViewBag.Title = "View2";}@******引用这两个js实现客户端的验证 ********@viewdata无法跨控制传值ViewData:@ViewData["View1"]Temp...
分类:Web程序   时间:2014-05-22 14:47:42    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!