Linux系统中如何启动RMAN
Linux系统中如何启动RMAN
这里学习啦小编介绍如何在Linux系统中启动RMAN。下面一起来看看吧!!!
学习啦在线学习网 RMAN(Recovery Manager)是一种用于备份(backup)、还原(restore)和恢复(recover)数据库的 Oracle 工具。
RMAN可以由OEM的Backup Manager GUI来控制。
Linux系统中启动RMAN
如果是windows系统,先看看oracle的SID,然后在DOS里面设置一下SID
学习啦在线学习网 命令set ORACLE_SID=test
学习啦在线学习网 Linux中,查看oracle数据库的SID号,用如下命令:
学习啦在线学习网 rman的参数及说明
Argument Value Description
-----------------------------------------------------------------------------
target quoted-string connect-string for target database
学习啦在线学习网 catalog quoted-string connect-string for recovery catalog
学习啦在线学习网 nocatalog none if specified, then no recovery catalog
cmdfile quoted-string name of input command file
学习啦在线学习网 log quoted-string name of output message log file
trace quoted-string name of output debugging message log file
append none if specified, log is opened in append mode
学习啦在线学习网 debug optional-args activate debugging
msgno none show RMAN-nnnn prefix for all messages
send quoted-string send a command to the media manager
学习啦在线学习网 pipe string building block for pipe names
timeout integer number of seconds to wait for pipe input
checksyntax none check the command file for syntax errors
学习啦在线学习网 -----------------------------------------------------------------------------
Both single and double quotes (' or ") are accepted for a quoted-string.
Quotes are not required unless the string contains embedded white-space.
注意这里的说明
Both single and double quotes (' or ") are accepted for a quoted-string.
Quotes are not required unless the string contains embedded white-space.
如果字符串中没有空格字符,可以不使用引号
直接输入rman即可进入rman,注意这里rman必须小写
输入connect target / 连接数据库
学习啦在线学习网 输入exit,可以退出rman