Script Python connects and runs queries RMAN (ORACLE) commands

687 Views Asked by At

I want to write code in python to run RMAN (ORACLE) commands. Do you have any samples or tutorials ?

1

There are 1 best solutions below

0
On

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")