I need help with how to programmatically backup a database
expdp system/system_password
directory=dir_exp job_name=jobexp
SCHEMAS=my_schema
where "system_password" is the actual "system" password and "my_schema" is the name of the schema I want to export.
How can I verify in an automatic manner that the export was successful? Searching the log file for the "successfully completed at" line is not such a good idea...
The question remains for restore also: how can I check that the restore is successful?



