1.  
  2. 第一步:查看表空间的名字及文件所在位置:

    select tablespace_name, file_id, file_name,

    round(bytes/(1024*1024),0) total_space

    from dba_data_files

    order by tablespace_name

    Oracle表空间扩展

  3. 2

    第二步:增大所需表空间大小:

     

    alter database datafile '表空间位置'resize 新的尺寸

    例如:

    alter database datafile '\oracle\oradata\anita_2008.dbf' resize 4000m

  4. 3

    第三步:设置表空间自动扩展

    alter database datafile '\oracle\oradata\anita_2008.dbf'

          autoextend on next 100m maxsize 10000m

原文地址:https://jingyan.baidu.com/article/3c48dd347c9e74e10be35835.html?qq-pf-to=pcqq.c2c

相关文章:

  • 2021-12-29
  • 2022-12-23
  • 2022-01-03
  • 2021-11-23
  • 2021-12-16
猜你喜欢
  • 2021-11-10
  • 2022-12-23
  • 2021-04-25
  • 2021-04-13
相关资源
相似解决方案