n Oracle E-Business Suite (EBS), there is no standard -S flag for the primary cloning commands (adpreclone.pl or adcfgclone.pl).
However, your query likely refers to a specific usage of the
screen utility in Linux/UNIX, which DBAs use to run long-running cloning processes in the background.Running Clone Commands in
screenDBAs use
screen to ensure a clone isn't interrupted if their network connection drops.- To start a new session:
screen -S clone_session(The-Sflag here simply names the session "clone_session" for easy identification). - To run the clone inside the screen:
- To detach (leave it running): Press
Ctrl + AthenD. - To re-attach later:
screen -r clone_session
No comments:
Post a Comment