Home > Database > Mysql Tutorial > body text

Oracle 11g 11.2.0.1.0 使用exp无法导出空表的解决办法

WBOY
Release: 2016-06-07 17:18:11
Original
941 people have browsed it

Oracle 11g(11.2.0.1.0)中有bug,当表无数据时,不分配segment,该方法是在在空表中插入数据,再删除,则产生segment。导出时则可

Oracle 11g 11.2.0.1.0 使用exp无法导出空表的解决办法

[日期:2012-08-10] 来源:Linux社区  作者:scorpio3k [字体:]

Oracle 11g(11.2.0.1.0)中有bug,当表无数据时,,不分配segment

解决方法:

1、insert一行,再rollback就产生segment了。

该方法是在在空表中插入数据,再删除,则产生segment。导出时则可导出空表。

2、设置deferred_segment_creation 参数

SQL>show parameter deferred_segment_creation

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

deferred_segment_creation            boolean     TRUE

SQL> alter system set deferred_segment_creation=false;

改变后只对之后的表起作用,并且需要重启oracle服务才能生效

3、手动给空表分配空间

  • DECLARE  
  • /  
  • 11g(11.2.0.2.0)这个bug好像就修复了,建议用expdb 命令导出。

    linux

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template