Schedule Prorest

gerie

Member
I'm working with Progress OpenEdge 10.1B and I want to restore a database on a daily schedule in an other progress database.
The OS is Windows2003 server.
So I've written a batch file in order to do so. (I have only basic knowledge on writing batch files)
After the prorest command I have to confirm by typing y.
How can I skip that question in order to schedule this automaticaly?
 
Redirect input from a file. If you are restoring more than 1 extent you have to list the extent names in a file and redirect from that file anyway. So it would look something like this:

Code:
prorest dbname dbname.pbk.01 < dbname.list

dbname.list:
Code:
y
dbname.pbk.02
dbname.pbk.03
dbname.pbk.04
dbname.pbk.05
 
Ehhhh I don't understand. Ik have a dbname.bkup file. I don't use different extents to backup the database.
 
Back
Top