问题标签 [rman]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - 如何在 Java 中连接到 RMAN?
我不知道如何在 Java 中连接到 RMAN。当我使用命令非 SQL 时,简单的请求不起作用,比如 RMAN 等......我要制作像“ORACLE Secure BackUP”这样的程序,但是它们是如何连接到 RMAN 的?
database - Oracle 备份和恢复
oracle 新手,我有一个我们不再使用的 oracle 数据库(版本:8.1.7.4)。
我想备份并保留几年(我们不知道我们以后是否需要一些东西)
1 >> 备份的最佳方法是什么?2 >> 我可以在本地机器上进行备份并将其还原到更新版本的 oracle 吗?
谢谢,杰克
oracle11g - RMAN 连接到错误的目标
当我跑的时候rman target / @mydb nocatalog cmdfile=%commands% msglog=%logfile%
,我看到了connected to target database: OTHERDB (DBID=3786352837, not open)
。
帮助!
backup - 无法为创建备用数据库准备主数据库(对于 RMAN)
从详细的错误信息中可以看出,设置“log_archive_dest_2”参数时的错误。
我们正在使用带有 RHEL 5 的 oracle 11g 标准版
如果您能告诉我是否有一种简单的方法来设置备份数据库服务器,那将是不胜感激的。
谢谢并恭祝安康
贾亚拉克斯米
oracle - 将 rman 备份日志文件保存到联网位置
尝试过假脱机,尝试过命令行符号:log \\networked_location\rman.log
让 rman 将其自己的日志文件保存到联网位置没有任何作用。可以将它们在线保存在它正在备份的数据库中,但希望将它们与实际备份一起保存到网络位置。
11g,使用没有目录的 FRA。只需备份一个数据库,不需要目录。
Windows 调度程序运行 .bat 以获取 .rcv
任何人都知道让 rman 可靠地将日志文件放置到网络位置的技巧吗?显而易见的不起作用....
感谢提供的任何帮助。
oracle11g - 如何使用 RMAn 更改 oracle11g 的默认备份位置?
由于磁盘空间不足,我想更改为另一个驱动器。
如何使用 RMAN 将 oracle 使用的备份文件的默认位置更改到另一个驱动器?
默认情况下,它位于ORACLE_HOME
变量的文件夹中。
编辑:
在这里找到了一些与我的问题类似的链接,但它们没有帮助。
我的脚本看起来像这样:
run {
allocate channel d1 type disk;
allocate channel d2 type disk;
backup
format 'd:/backups/%U.bkp'
database plus archivelog;
release channel d1;
release channel d2;
}
编辑:通过运行上述脚本,备份将永远不会完成
oracle - RMAN 文件的数据布局是什么?
我想知道 RMAN 备份文件的磁盘格式。这在任何地方都有记录吗?
oracle - 使用 rman 备份 oracle 数据库时出错
这就是我在不登录 oracle 10g 数据库的情况下尝试备份数据库的方式。谁能告诉我为什么会出现此错误以及我应该如何尝试解决它?
执行此操作后,我收到如下错误:
我尝试搜索此错误,但无法确切了解如何解决。 http://www.youtube.com/watch?v=8dA6BYxF_YE&feature=related。这是我在执行此操作时提到的视频。
oracle11g - 恢复后更改数据库名称控制文件?
我已将名为 DB 的数据库还原到另一个名为 DB01 的数据库
它处于 STARTED 状态(未安装),如果未安装,我似乎无法更改名称,并且由于名称我无法安装它,如果可能的话如何解决这个问题?
我在托管数据库 DB01 的当前服务器上从 DB 进行了 RMAN 完整备份,initdb01.ora 已准备好并配置了 DB01
接下来我能做什么
nid没有帮助!它要求安装数据库!我无法安装它
ORA-01103: 控制文件中的数据库名称 'DB' 不是 'DB01'
oracle - Restoring RMAN Oracle 10g Backup in Oracle 11g
I have the RMAN full database backup of oracle 10g (10.2.0.3) on Sun Solaris OS which I want to restore on oracle 11g (11.2.0.3) on Linux OS. The backup pieces were transferred to the oracle 11g server manually in binary mode. The Oracle 11g is installed on Linux OS. I have only the RMAN backup and no access to the primary database from where the backup has been taken.
the backup is taken in the above format. I know the ORACLE_SID and did of the database from which the backup has been taken.
whenever I tried the following command
the following error was notified
i tried recovering the rman backup through catalog also and the following error was notified
the file is not corrupted as I checked the checksum on both the servers and it is the same.
Please help me how can I restore the RMAN oracle 10g backup in Oracle 11g and let me know where I am going wrong.
Thanks in advance.