ora-39095,ora39095转储文件空间已耗尽

http://www.itjxue.com  2023-01-21 06:54  来源:未知  点击次数: 

ORA-01749/39087/22929

you may not GRANT/REVOKE privileges to/from yourself

换成下面的即可

select * from dba_directories where DIRECTORY_NAME='yy';? ---查看目录是否存在

select owner,table_name,grantor,privilege from dba_tab_privs where grantee='SYSDB';? ---查看是否有read write权限//注意SYSDB大写

expdp bankdb/xxx directory='c:\app\yy' dumpfile=yy.dmp? ---- 应改为directory='yy'?

注:目录名不能以数字开头,比如 20210101 、20210107yy都不行。yy0107可以。

ORA-39006错误原因及解决办法

expep/Impdp导入时报错:

ORA-39006: internal error

ORA-39213:Metadata processing is not available

解决:

execute dbms_metadata_util.load_stylesheets;

oracle使用impdp导入dmp文件时提示 ora-39088 文件名不能包含路径说明

更新缓存。

缓存(cache),原始意义是指访问速度比一般随机存取存储器(RAM)快的一种高速存储器,通常它不像系统主存那样使用DRAM技术,而使用昂贵但较快速的SRAM技术。缓存的设置是所有现代计算机系统发挥高性能的重要因素之一。

缓存是指可以进行高速数据交换的存储器,它先于内存与CPU交换数据,因此速率很快。L1 Cache(一级缓存)是CPU第一层高速缓存。

内置的L1高速缓存的容量和结构对CPU的性能影响较大,不过高速缓冲存储器均由静态RAM组成,结构较复杂,在CPU管芯面积不能太大的情况下,L1级高速缓存的容量不可能做得太大。一般L1缓存的容量通常在32—256KB。

L2 Cache(二级缓存)是CPU的第二层高速缓存,分内部和外部两种芯片。内部的芯片二级缓存运行速率与主频相同,而外部的二级缓存则只有主频的一半。L2高速缓存容量也会影响CPU的性能,原则是越大越好,普通台式机CPU的L2缓存一般为128KB到2MB或者更高,笔记本、服务器和工作站上用CPU的L2高速缓存最高可达1MB-3MB。

由于高速缓存的速度越高价格也越贵,故有的计算机系统中设置了两级或多级高速缓存。紧靠内存的一级高速缓存的速度最高,而容量最小,二级高速缓存的容量稍大,速度也稍低。

expdp 的filesize参数大小具体这样设置呢

1.设置100K报错:

连接到: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

With the Partitioning, OLAP and Data Mining options

启动 "SYSTEM"."SYS_EXPORT_SCHEMA_01": system/******** directory=test4 dumpfile=

luo%U.dmp logfile=luo.log SCHEMAS=luojiakun FILESIZE=100K

正在使用 BLOCKS 方法进行估计...

处理对象类型 SCHEMA_EXPORT/TABLE/TABLE_DATA

使用 BLOCKS 方法的总估计: 3.375 MB

处理对象类型 SCHEMA_EXPORT/USER

处理对象类型 SCHEMA_EXPORT/SYSTEM_GRANT

处理对象类型 SCHEMA_EXPORT/ROLE_GRANT

处理对象类型 SCHEMA_EXPORT/DEFAULT_ROLE

处理对象类型 SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

处理对象类型 SCHEMA_EXPORT/SEQUENCE/SEQUENCE

处理对象类型 SCHEMA_EXPORT/TABLE/TABLE

处理对象类型 SCHEMA_EXPORT/TABLE/INDEX/INDEX

ORA-39095: 转储文件空间已耗尽: 无法分配 110592 字节

作业 "SYSTEM"."SYS_EXPORT_SCHEMA_01" 因致命错误于 16:25:52 停止

oracle 11gimpdp导入数据报错ora-39083和ora-00600啥情况呢?

SYMPTOMS

Running a TTS import with Datapump the following error is raised:

ORA-00600: internal error code, arguments: [ktssinseg3], [7], [93463067]

in DW process.

In the related trace file we can see the failing command is a DDL , for example:

CREATE UNIQUE INDEX "REP_ADMIN"."RYOT_SPRO_ID_PK" on "REP_ADMIN"."REP_YIELD_OPER_TMP"("RYOT_SPRO_ID")PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(SEG_FILE 22 SEG_BLOCK 1188379 OBJNO_REUSE 720739 INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "REP_ADMIN" NOPARALLEL

CAUSE

The internal error is being caused because the object target tablespace already exist in the target DB (REP_ADMIN in above example), and the block used in the create command is already being used by other object.

Executing the following query in the target DB:

SELECT tablespace_name, segment_type, owner, segment_name

FROM dba_extents

WHERE file_id = file#

and block# between block_id AND block_id + blocks - 1;

where file# is the first argument in the internal error ([7] in the above reference) and block# is the second argument in the internal error ([93463067] above), returns the existing object using the requested block.

SOLUTION

To prevent this internal error you would need to make sure no objects are manually created between the import of both tablespaces or to manually create the missing constraints/indexes after the import is completed.

需要具体的TRACE进一步分析该问题

如果自己搞不定可以找诗檀软件专业ORACLE数据库修复团队成员帮您恢复!

诗檀软件专业数据库修复团队

expdp 的filesize参数大小具体这么设置呢

设置100K报错:

连接到: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

With the Partitioning, OLAP and Data Mining options

启动 "SYSTEM"."SYS_EXPORT_SCHEMA_01": ?system/******** directory=test4 dumpfile=

luo%U.dmp logfile=luo.log SCHEMAS=luojiakun FILESIZE=100K

正在使用 BLOCKS 方法进行估计...

处理对象类型 SCHEMA_EXPORT/TABLE/TABLE_DATA

使用 BLOCKS 方法的总估计: 3.375 MB

处理对象类型 SCHEMA_EXPORT/USER

处理对象类型 SCHEMA_EXPORT/SYSTEM_GRANT

处理对象类型 SCHEMA_EXPORT/ROLE_GRANT

处理对象类型 SCHEMA_EXPORT/DEFAULT_ROLE

处理对象类型 SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

处理对象类型 SCHEMA_EXPORT/SEQUENCE/SEQUENCE

处理对象类型 SCHEMA_EXPORT/TABLE/TABLE

处理对象类型 SCHEMA_EXPORT/TABLE/INDEX/INDEX

ORA-39095: 转储文件空间已耗尽: 无法分配 110592 字节

作业 "SYSTEM"."SYS_EXPORT_SCHEMA_01" 因致命错误于 16:25:52 停止

酷睿软件园为您解答

(责任编辑:IT教学网)

更多

相关管理维护文章

推荐管理维护文章