Prompt when creating RMAN parametirized script
If I execute the below command
create script backup_ts {backup tablespace &1;}
I get a prompt to enter the tablespace. If I write USERS and then execute
print script backup_ts;
then I get
{backup tablespace &1;}
.
Why Iam I prompt if what I write is not saved?
0