morx

 

1.查看表空间文件存放路径

1

SQL> SELECT tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0) total_space FROM dba_data_files ORDER BY tablespace_name;

2.扩展ncc_data01表空间

1

SQL> alter tablespace nnc_data01 add datafile \'D:\ORACLE\PRODUCT\10.2.0\ORADATA\NC\DATAFILE\NNC_DATA01_01.DBF\' size 1000M autoextend on next 50M;

3.扩展ncc_index01表空间

1

SQL> alter tablespace nnc_index01 add datafile \'D:\ORACLE\PRODUCT\10.2.0\ORADATA\NC\DATAFILE\NNC_INDEX01_01.DBF\' size 1000M autoextend on next 50M;

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-09-30
  • 2021-11-26
  • 2021-04-13
  • 2021-12-29
猜你喜欢
  • 2021-04-25
  • 2021-11-23
  • 2021-11-10
  • 2021-06-10
相关资源
相似解决方案