Where does the script written using RMAN command gets stored and how to display the commands used in the script?

Showing Answers 1 - 2 of 2 Answers

RMAN scripts are stored in RMAN catalog schema.It is not possible to create RMAN scripts without RMAN catalog.

Connect RMAN to create and see script information

$RMAN catalog=username/password target=username/password

RMAN>create script <script name>
{

<script>
}

RMAN>print script <scriptname>;


If u want see script names then

RMAN>list script names;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions