--查询临时表空间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
#!/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
第一步:创建临时表空间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
原文网址:http://shijuanfeng.blogbus.com/logs/100675115.html第一种方法:定义一个文件类对象来操作CFile TempFile;TempFile.Remove(指定文件名);第二种方法:使用系统函数 DeleteFile( LPCSTR filenam...
分类:
编程语言 时间:
2015-03-07 00:59:39
阅读次数:
184
/*分为四步 *//*第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
这是在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
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
/*分为四步 *//*第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