0

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

Hiten004
  • 2,425
  • 1
  • 22
  • 34
Flochon
  • 31
  • 1
  • 8

1 Answers1

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