Oracle冷备份需要保存的文件

不需要新建对应的用户和表空间,但要注意不一定你所有需要的文件都在oradata下面,需要确定一下,不要漏了
--控制文件

select name from v$controlfile;
--临时文件(可以不需要)
select name from v$tempfile;
--数据文件

select name from v$datafile;
--重作日志文件

select member from v$logfile;
--参数文件

select value from v$parameter where name='spfile';
原文地址:https://www.cnblogs.com/loushuibazi/p/3368978.html