码迷,mamicode.com
首页 >  
搜索关键字:tempfile    ( 200个结果
树莓派-获取CPU和GPU温度
CPU的温度可以从一个系统临时文件中读取:/sys/class/thermal/thermal_zone0/temp GPU温度也可以从一个文件中读取:/opt/vc/bin/vcgencmd measure_temp import commands def get_cpu_temp(): tempFile = open( "/sys/class/thermal/therma...
分类:其他好文   时间:2015-02-04 21:57:04    阅读次数:427
oracle创建表空间
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m...
分类:数据库   时间:2015-02-03 19:24:12    阅读次数:144
oracle创建临时表空间、用户表空间、创建用户关联表空间、授权等
1、创建临时表空间 CREATE TEMPORARY TABLESPACE test_temp TEMPFILE 'C:\oracle\product\10.1.0\oradata\orcl\test_temp01.dbf' SIZE 32M AUTOEXTEND ON NEXT 32M ...
分类:数据库   时间:2015-01-23 19:57:37    阅读次数:220
临时表空间的增删改查
1、查看临时表空间 (dba_temp_files视图)(v_$tempfile视图)select tablespace_name,file_name,bytes/1024/1024 file_size,autoextensible from dba_temp_files;select status...
分类:其他好文   时间:2015-01-11 17:34:50    阅读次数:240
创建oracle数据库,用户、表空间、设置角色权限脚本
/*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace contract_temp tempfile 'D:\oradata\contract_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第2步:创建数据表...
分类:数据库   时间:2015-01-10 11:21:32    阅读次数:242
表空间的创建(学习笔记)
表空间的创建:一般由管理员来创建,创建时使用管理员登录表空间命名:以 TBS_为前缀,也可以自定义统一即可定义表空间语法CREATE[TEMPORARY] TABLESPACE 表空间名称DATAFILE |TEMPFILE‘表空间路径’ SIZE 数字 K|MAUTOEXTEND ON |OFF[...
分类:其他好文   时间:2015-01-09 00:08:44    阅读次数:209
不要在linux上使用java 7 Files的接口参数StandardOpenOption.DELETE_ON_CLOSE
最近在看安全代码规范建议中提到关于如何删除创建的临时文件,推荐使用jdk7中的Files的函数,通过参数StandardOpenOption.DELETE_ON_CLOSE来控制 代码示例 BufferedWriter writer = Files.newBufferedWriter(tempFile, Charset.forName("UTF8"), StandardOpenOption.D...
分类:编程语言   时间:2015-01-07 20:54:11    阅读次数:171
xmp
public static string ExportExcel(string tempfilename, Dictionary tables) { #region 导出Excel string destfilename = tempfile...
分类:其他好文   时间:2015-01-05 12:42:08    阅读次数:195
MySQL online ddl
前言:5.1和5.5innodbplugin支持Fastindexcreate:Fastindexcreate如何实现的?只是对于secondaryindex,不需要copytabledata。执行过程:1.判断当前表是否有未结束的transaction(commitorrollback)2.对原表加sharedlock2.把secondaryindex用的column排序放到memory或tempfile..
分类:数据库   时间:2014-12-26 14:55:21    阅读次数:198
oracle创建表空间脚本
前言: 以前都是用oracle的工具生成表空间的,今天看到一种更方便、快速的方法---使用数据库脚本。 /*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace airforce34 tempfile 'D:\date\airforce34.dbf' size 100m autoextend on ; --删除临时表空间...
分类:数据库   时间:2014-12-26 11:18:35    阅读次数:231
200条   上一页 1 ... 15 16 17 18 19 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!