ORA-32771: cannot add file to bigfile tablespace

ORA-32771: cannot add file to bigfile tablespace

问题描述:

扩容表空间的时候提示大文件表空间不可以添加文件
ORA-32771: cannot add file to bigfile tablespace

原因:

Oracle 的大文件表空间只允许有1个文件,这个文件的最大大小可以到32T。

A BIGFILE tablespace can contain only ONE datafile, but it could be up to 32T

参考:
Oracle Advanced Authentication(OAA) ORA-32771: cannot add file to bigfile tablespace (Doc ID 2974087.1)

处理方法:

如果需要及时处理的话,可以通过如下方法对表空间进行扩容。
ALTER TABLESPACE tbsname RESIZE 12G;

或者
ALTER TABLESPACE tbsname AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED;

--创建一个大文件表空间
Create Bigfile tablespace  bf_images_xp datafile 'D:\APP\ZHOU\ORADATA\SCIMSDB\\bf_images_xp.dbf'  size 500M Autoextend OFF;

SQL> ALTER TABLESPACE bf_images_xp AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED;

Tablespace altered.

SQL> select TABLESPACE_NAME,AUTOEXTENSIBLE from dba_data_files where tablespace_name='BF_IMAGES_XP';

TABLESPACE_NAME
--------------------------------------------------------------------------------
AUTOEXTEN
---------
BF_IMAGES_XP
YES


SQL> ALTER TABLESPACE bf_images_xp RESIZE 1G;

Tablespace altered.

SQL>

相关推荐

  1. ORA-32771: cannot add file to bigfile tablespace

    2024-01-27 02:36:03       29 阅读
  2. <span style='color:red;'>ORA</span>-29548

    ORA-29548

    2024-01-27 02:36:03      19 阅读
  3. expdp时报错ORA-31693&ORA-02354&ORA-01555

    2024-01-27 02:36:03       33 阅读
  4. ORA-01031: insufficient privileges

    2024-01-27 02:36:03       37 阅读
  5. 【Oracle】ORA-32017和ORA-00384错误处理

    2024-01-27 02:36:03       41 阅读
  6. 新建pdb 打不开 ORA-65104 ORA-25153

    2024-01-27 02:36:03       10 阅读
  7. sqlachemy orm create or delete table

    2024-01-27 02:36:03       37 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-01-27 02:36:03       16 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-01-27 02:36:03       16 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-01-27 02:36:03       15 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-01-27 02:36:03       18 阅读

热门阅读

  1. 【每日一题】YACS P11:双质数

    2024-01-27 02:36:03       41 阅读
  2. 【知识---git中一些常用的命令及其选项】

    2024-01-27 02:36:03       27 阅读
  3. Android 写入 csv 乱码,设置UTF-8的流也不行

    2024-01-27 02:36:03       43 阅读
  4. vue开发的PC端项目使用postcss-to-viewport适配移动端

    2024-01-27 02:36:03       39 阅读