码迷,mamicode.com
首页 >  
搜索关键字:tempfile    ( 200个结果
sys和os modules
Python的系统模块包括:sys, os, glob, socket, threading, _thread, queue, time, timeit, subprocess, multiprocessing, signal, select, shutil, tempfile等。 大多数系统级接口集中在:sys和os两个模块。 sys模块包含:     平台与版本的信息,如sys.pl...
分类:其他好文   时间:2014-12-26 11:18:53    阅读次数:184
Windows下用Python你会几种copy文件的方法?
1.[代码]1. os.system?12345678910111213141516171819202122import osimport tempfilefilename1 = tempfile.mktemp (".txt")open (filename1, "w").close ()filena...
分类:编程语言   时间:2014-12-25 12:56:51    阅读次数:237
10步教你学会简单的MVC架构的java程序(适合新手)
10步教你学会简单的MVC架构的java程序(适合新手) 第1步:安装Oracle数据库,安装过程不赘述了; 第2步:新建一个账号zwp_test //创建临时表空间 create temporary tablespace zwp_test_temp tempfile 'F:\app\Administrator\oradata\zwp_test_temp.dbf' size 50m autoextend on...
分类:编程语言   时间:2014-11-30 23:21:37    阅读次数:322
数据库
/* 创建表空间 语法: 表空间:create tablespace 表空间名称 datafile 物理文件存放路径 size 文件大小以M为单位 临时表空间: create temporary tablespace 表空间名称 tempfile 物理文件存放路径 size 文件大小以M为...
分类:数据库   时间:2014-11-28 17:59:32    阅读次数:394
linux下oracle创建表空间
在命令行模式下,输入sqlplus /nolog,回车这时界面会显示SQL>,这个时候再输入 conn / as sysdba;回车//创建临时表空间create temporary tablespace test_temp tempfile'/home/app/oracle/oradata/tes...
分类:数据库   时间:2014-11-20 18:22:39    阅读次数:220
oracle 数据库备份
//创建临时表空间create temporary tablespace test_temp tempfile 'D:\oracle\data\test\test_temp.dbf' size 32m autoextend on next 32m extent management local; /...
分类:数据库   时间:2014-11-14 10:26:48    阅读次数:199
关于v$datafile和v$tempfile中的file#
v$datafile视图中存储的是有关数据文件的信息,v$tempfile视图中存储的是有关临时文件的信息。在两个视图中都有file#字段,先来看一下官方文档的定义: V$DATAFILE This view contains datafile information from the control file. See Also: "V$DATAFILE_HEADER",...
分类:其他好文   时间:2014-11-10 08:42:16    阅读次数:273
Oracle创建新用户
1.以DBA身份登录 $sqlplussys/eastcom@ORCLassysdba(在命令窗口下) 也可以使用PL/SQL2.创建临时表空间1 create temporary tablespace jiashubing_temp 2 tempfile 'E:\app\USER\ora...
分类:数据库   时间:2014-11-05 16:24:32    阅读次数:211
oracle 创建表空间
1,打开 sqlplus 登录用户 > system as sysdba >**** 2,创建临时表空间 create temporary tablespace VTMTEMP tempfile 'D:\else\oracle\tablespace\vtm\vtmtemp.dbf' size 50m...
分类:数据库   时间:2014-10-30 23:53:12    阅读次数:306
oracle常用命令
--登录:sys/ken@orcl as sysdba1、建立表空间、授予权限/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.....
分类:数据库   时间:2014-10-20 18:59:46    阅读次数:248
200条   上一页 1 ... 16 17 18 19 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!