我试图在RMAN中传输一个表空间。我正在运行的命令是
transport tablespace usr_table auxiliary destination '/oracle/rman/auxFiles' tablespace destination '/oracle/rman';用于自动实例的初始化参数为
initialization parameters used for automatic instance:
db_name=ORCL
db_unique_name=tnpD_pitr_ORCL
compatible=12.2.0
db_block_size=8192
db_files=200
diagnostic_dest=/opt/oracle
_system_trig_enabled=FALSE
sga_target=2048M
processes=200
db_create_file_dest=/oracle/rman/auxFiles
log_archive_dest_1='location=/oracle/rman/auxFiles'
#No auxiliary parameter file used我所犯的错误是
RMAN-03002: failure of transport tablespace command at 06/10/2020 15:32:40
RMAN-04014: startup failed: ORA-27125: unable to create shared memory segment
Linux-x86_64 Error: 28: No space left on device
Additional information: 3822
Additional information: 2130706432我需要换一下
diagnostic_dest=/opt/oracle我是否应该创建一个辅助文件,如果是的话,我是否需要将所有参数都显示在rman输出中?
发布于 2020-07-03 16:04:19
我的问题是,我的一个表空间的auto_extend设置为关闭。一旦我改变了,我就能够运行我的命令
https://dba.stackexchange.com/questions/268905
复制相似问题