码迷,mamicode.com
首页 >  
搜索关键字:tempfile    ( 200个结果
查询临时表空间大小及压缩空间大小
--查询临时表空间select f.tablespace_name,d.file_name "tempfile name",round((f.bytes_free + f.bytes_used) / 1024 /1024, 2) "total mb",round(((f.bytes_free + f...
分类:其他好文   时间:2015-04-17 17:34:19    阅读次数:165
临时表空间的查询与压缩
--查询临时表空间select f.tablespace_name,d.file_name "tempfile name",round((f.bytes_free + f.bytes_used) / 1024 /1024, 2) "total mb",round(((f.bytes_free + f...
分类:其他好文   时间:2015-04-10 13:04:56    阅读次数:103
用来写日记的脚本程序[bash]
#!/bin/bash diarypath=‘/home/quanwei/documents/diary/riji.riji‘ tempfile=`mktemp -u` vi $tempfile if [ -f $tempfile ]; then echo `date` >> $diarypath cat $tempfile >> $diarypath rm $tempfile e...
分类:其他好文   时间:2015-03-29 19:39:46    阅读次数:114
创建表空间
/*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m maxsize ...
分类:其他好文   时间:2015-03-20 16:00:58    阅读次数:161
oracle创建用户及表空间
第一步:创建临时表空间CREATE TEMPORARY TABLESPACE DB_TEMP TEMPFILE 'D:\oracle\product\10.2.0\oradata1\orcl\DB_TEMP.DBF' SIZE 32M AUTOEXTEND ON NEXT 32M MAxSIZE U...
分类:数据库   时间:2015-03-14 13:48:23    阅读次数:155
【转】VC MFC 如何删除文件,目录,文件夹
原文网址:http://shijuanfeng.blogbus.com/logs/100675115.html第一种方法:定义一个文件类对象来操作CFile TempFile;TempFile.Remove(指定文件名);第二种方法:使用系统函数 DeleteFile( LPCSTR filenam...
分类:编程语言   时间:2015-03-07 00:59:39    阅读次数:184
oracel 创建表空间、用户、导入数据库
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace csxaj_temp tempfile 'D:\oracle\oradata\scpinganka\csxaj_temp.dbf' size 50m autoextend on next...
分类:数据库   时间:2015-03-06 12:44:03    阅读次数:214
Android OTA升级包制作脚本详解(三,打包)
这是在ota_from_target_files中mian函数中打包的主要流程语句: 第一步:打包 #抽象一个新的临时文件 temp_zip_file = tempfile.NamedTemporaryFile() #创建一个zip包用来进行打包 output_zip = zipfile.ZipFile(temp_zip_file, "w",...
分类:移动开发   时间:2015-02-27 12:00:21    阅读次数:282
caffe笔记之例程学习(二)
Classification with HDF5 data1.导入库 1 import os 2 import h5py 3 import shutil 4 import sklearn 5 import tempfile 6 import numpy as np 7 import pandas a...
分类:其他好文   时间:2015-02-23 06:27:19    阅读次数:354
oracle创建表空间
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m...
分类:数据库   时间:2015-02-10 13:06:43    阅读次数:144
200条   上一页 1 ... 14 15 16 17 18 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!