码迷,mamicode.com
首页 >  
搜索关键字:tempfile    ( 200个结果
Oracle创建表空间、创建用户以及授权、查看权限
创建暂时表空间 CREATE TEMPORARY TABLESPACE test_temp TEMPFILE 'C:\oracle\product\10.1.0\oradata\orcl\test_temp01.dbf' SIZE 32M AUTOEXTEND ON NEXT 32M MAXSIZE ...
分类:数据库   时间:2016-04-06 09:26:58    阅读次数:204
oracle创建用户、授予权限及删除用户
创建用户 oracle对表空间 USERS 无权限 alter user 用户名 quota unlimited on users; //创建临时表空间 create temporary tablespace test_temp tempfile 'E:/oracle/product/10.2.0/ ...
分类:数据库   时间:2016-03-30 12:56:48    阅读次数:197
关于python 文件操作os.fdopen(), os.close(), tempfile.mkstemp()
嗯。最近在弄的东西也跟这个有关系,由于c基础渣渣。现在基本上都忘记得差不多的情况下,是需要花点功夫才能弄明白。每个语言都有相关的文件操作。今天在flask 的例子里看到这样一句话。拉开了文件操作折腾的序幕 db_fd, flaskr.app.config['DATABASE'] = tempf...
分类:编程语言   时间:2016-01-10 01:39:24    阅读次数:186
冷备份恢复与异机还原
冷备份发生在数据库关闭状态下,直接拷贝物理文件的备份方式,备份数据库可以运行在归档模式,也可以运行在非归档模式。备份流程: 1)首先在运行的库中得到运行的所有文件。 主要备份文件:passwordfile、spfile、controlfile、datafile、tempfile、logfile 2)...
分类:其他好文   时间:2015-11-24 09:55:01    阅读次数:467
configmanager
抓取文件import shutil, tempfile, subprocessdef _fetch_file(host, user, filename): """Function to fetch a file from the server and copy it to the loc...
分类:其他好文   时间:2015-11-06 17:40:47    阅读次数:197
Oracle创建库
oracle创建表空间 SYS用户在CMD下以DBA身份登陆:在CMD中打sqlplus /nolog然后再conn / as sysdba--如果路径不存在则要创建路径--创建临时表空间 create temporary tablespace txwh_temp tempfile 'E:\or.....
分类:数据库   时间:2015-11-02 17:41:31    阅读次数:249
oracle 创建表空间
2015-10-19/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile '/u01/app/oracle/oradata/orcl/user_temp.dbf' size 50m autoextend ...
分类:数据库   时间:2015-10-19 12:25:57    阅读次数:248
oracle表空间创建
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m max...
分类:数据库   时间:2015-10-18 11:14:45    阅读次数:164
oracle创建用户
1 --创建临时表空间 2 create temporary tablespace pr_temp 3 tempfile 'F:\app\data\tablespace\pr_temp.dbf' 4 size 50m 5 autoextend on next 50m maxsize 2048m 6....
分类:数据库   时间:2015-10-10 18:31:20    阅读次数:198
android保存图片的方式
Android中保存图片的两种方式第一种是保存到数据库:1、保存到数据库:2、从数据库读取:二是以图片格式保存到本地1、A、声明tempFile以保存到指定路径:B、保存到tempFile:2、或者用系统方法保存到本地:3、从相册或者相机获得的url也可以用下面的方法来得到图片4、以上3种url获取...
分类:移动开发   时间:2015-10-08 17:57:16    阅读次数:152
200条   上一页 1 ... 11 12 13 14 15 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!