zoukankan      html  css  js  c++  java
  • oracle EXP错误 不能打开临时表文件 unable open file

    在用Oracle命令 EXP导出数据时出现下列问题:

    EXP-00008: 遇到 ORACLE 错误 1116
    ORA-01116: error in opening database file 201
    ORA-01110: data file 201: '/opt/app/oracle/oradata/orcl/temp01.dbf'
    ORA-27041: unable to open file
    Linux Error: 2: No such file or directory
    Additional information: 3
    EXP-00083: 调用 SYS.LT_EXPORT_PKG.system_info_exp 时出现前一问题
    EXP-00008: 遇到 ORACLE 错误 1116
    ORA-01116: error in opening database file 201
    ORA-01110: data file 201: '/opt/app/oracle/oradata/orcl/temp01.dbf'
    ORA-27041: unable to open file
    Linux Error: 2: No such file or directory

    如图:

    解决方法:

    1.首先删除表空间文件 temp01.dbf

    alter database tempfile '/opt/app/oracle/oradata/orcl/temp01.dbf' drop;

    2.新建一个表空间文件 temp01.dbf

    alter tablespace temp add tempfile '/opt/app/oracle/oradata/orcl/temp01.dbf' size 50m;
    alter database tempfile '/opt/app/oracle/oradata/orcl/temp01.dbf' online;

  • 相关阅读:
    Git使用教程
    H5项目常见问题汇总及解决方案
    globalAlpha 示例
    canvas 绘制三次贝塞尔曲线
    canvas 绘制二次贝塞尔曲线
    html5 图片360旋转
    HTML5 arc的例子
    HTML5 绘制阴影
    HTML5 canvas绘制文本
    html5 lineTo的使用例子
  • 原文地址:https://www.cnblogs.com/zhaoguo435/p/1664424.html
Copyright © 2011-2022 走看看