I want to take backup or restore of my oracle database through .Net code.
I searched a lot but not found any correct solution.
Like we do backup in SQL server by executing query.
backup database :DatabaseName to disk = ':DestinationPath
same I want to do in Oracle.
I found an easy way to take backup of oracle database though code.
I take credentials from user through code and make dynamically batch file of exp/imp commands.
and run this batch command with process class.
Thank you all for your responses.