码迷,mamicode.com
首页 >  
搜索关键字:bigfile tablespace    ( 1135个结果
Oracle create tablespace 、create user and so on
1.创建临时表空间CREATE TEMPORARY TABLESPACE test_tempTEMPFILE 'C:\oracle\product\10.1.0\oradata\orcl\test_temp01.dbf'SIZE 32MAUTOEXTEND ONNEXT 32M MAXSIZE 20...
分类:数据库   时间:2014-09-21 23:16:31    阅读次数:307
IT忍者神龟之Oracle DBA常用查询吐血列举
–1. 查询系统所有对象 select owner, object_name, object_type, created, last_ddl_time, timestamp, status from dba_objects where owner=upper('scott') –2. 查看系统所有表 select owner, table_name, tablespace_name ...
分类:数据库   时间:2014-09-19 13:53:45    阅读次数:317
impdp导入
//导入命令impdp 用户/密码@数据库链接 directory=数据库中映射路径 schemas=原用户 remap_schema=原用户:现用户 remap_tablespace=原表空间:现表空间(如果有多个表空间,就逗号分开)logfile= 日志文件dumpfile=数据文问题处理:1....
分类:其他好文   时间:2014-09-19 11:28:15    阅读次数:180
Oracle知识梳理
createtablespaceuser1datefile‘‘size20M//创建一个名为User1的表空间 autoextendon//数据文件的可扩展性 autoextendoff//关闭 autoextendonnext5M//指定数据文件的增长幅度 autoextendonnext5mmaxsize500M//查看表空间是否创建成功selectfile_name,tablespace_namefromdba_dat..
分类:数据库   时间:2014-09-18 19:10:55    阅读次数:262
【oracle11g,14】表空间管理3:临时表空间,表空间的脱机和只读,数据文件迁移,更改表空间数据文件的大小,表空间数据文件的迁移,使用非标准块的表空间,bigfile 表空间
【oracle11g,14】表空间管理3:临时表空间,表空间的脱机和只读,数据文件迁移,更改表空间数据文件的大小,表空间数据文件的迁移,使用非标准块的表空间,bigfile 表空间...
分类:数据库   时间:2014-09-18 11:36:23    阅读次数:305
oracle 命令
1 创建表空间及临时表空间 create tablespace csdn1 datafile 'csdn1' size 30m autoextend on; create temporary tablespace csdn2 tempfile 'csdn2' size 30m autoextend ...
分类:数据库   时间:2014-09-16 18:39:10    阅读次数:304
Oracle数据文件结构
Oracle的数据结构分为 物理结构和逻辑结构 物理结构: 操作系统的数据块—>数据文件datafiles 逻辑结构: 最小数据库block——>extent——>segement——>tablespace——>databases   其中对于一个tablespace可以有多个 datafiles,一个datafiles只能属于一个tablespace 对于segement可...
分类:数据库   时间:2014-09-16 14:17:50    阅读次数:220
Oracle 表空间联机(online)与脱机(offline)
数据库管理员可以在数据库处于开启(open)状态时令除 SYSTEM 表空间(tablespace)之外的任何表空间联机(online)(可访问)或脱机(offline)(不可访问)。SYSTEM 表空间在数据库处于开启(open)状态时总是处于联机状态,因为Oracle需要使用其中的数据字典(da...
分类:数据库   时间:2014-09-16 12:30:20    阅读次数:328
Oracle中的ORA-01548: active rollback segment '_SYSSMU1$' found
Oracle中的ORA-01548: active rollback segment '_SYSSMU1$' found 接上文《Oracle Undo tablespace恢复(无备份)》  http://www.linuxidc.com/Linux/2014-06/103779.htm RMAN备份与恢复之undo表空间丢失 http://www.linuxidc.com/Linux/20...
分类:数据库   时间:2014-09-14 18:03:47    阅读次数:391
IT忍者神龟之 配额不足的解决方法ORA-01536: space quota exceeded for tablespace
今天有同事反映最近几天的数据在oracle中查不到。检查TT的错误日志显示:TT5211: TT5211: Oracle out of resource error in OCIStmtExecute(): ORA-01536: space quota exceeded for tablespace 'TBSLOG' rc = -1 -- file "bdbTblH.c", lineno 24...
分类:其他好文   时间:2014-09-13 21:30:45    阅读次数:191
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!