Products
Webtrends Analytics 9.x
Webtrends Analytics 8.x
Issue
How do I change the scheduled start time for all backup events?
Resolution
In order to change all of the backup scheduled events to run at the same time, modify the event tables using the following query:
UPDATE wt_schedule, wt_event SET wt_schedule.starttime=’1141054200‘ where wt_schedule.eventID=wt_event.eventID AND wt_event.eventTypeID=256;
The starttime value is reported with an epoch time stamp and must remain in this format. The above example will start all backup events on the following date:
Mon Feb 27 07:30:00 2006
Replace the above epoch time stamp with one specific to when events will be backed up.