ORA-27090 故障一例
最近的alert日志中碰到了ORA-27090的错误信息,其错误提示为Unable to reserve kernel resources for asynchronous disk I/O。
11 个重要的数据库设计规则
Introduction
Rule 1:- What is the Nature of the application(OLTP or OLAP)?
Rule 2:- Break your data in to logical pieces, make life simpler
Rule 3:...
解决Linux系统下exp导入EXP-00028异常
问题描述:
在Linux系统中,对某个数据库用户进行exp导出备份时,出现下述异常:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
EXP-00028: /home/xxxx.dmp д : expdat.dmp >
无法成功导出
解决步骤:
起初是怀疑权限不够,所以对数据库所在目录赋权。
【导出导入】IMPDP table_exists_action 参数的应用
当使用IMPDP完成数据库导入时,如遇到表已存在时,Oracle提供给我们如下四种处理方式:a.忽略(SKIP,默认行为);b.在原有数据基础上继续增加(APPEND);c.先DROP表,然后创建表,最后完成数据插入(REPLACE);d.先TRUNCATE,再完成数据插入(TRUNCATE)。