I want to write code in python to run RMAN (ORACLE) commands. Do you have any samples or tutorials ?
Asked
Active
Viewed 636 times
1 Answers
2
There are many examples of how to run external commands in Python's subprocess module documentation.
The easiest way of all to run a command (though without any control over I/O) is
os.system("command and arguments")

holdenweb
- 33,305
- 7
- 57
- 77