How can I find out the status of past and present Recovery Solution server jobs?
| Article:HOWTO10211 | | | Created: 2009-05-28 | | | Updated: 2011-10-10 | | | Article URL http://www.symantec.com/docs/HOWTO10211 |
Question
I want to see the status of my server jobs from the past and from the present. How can I do this?
Answer
To check the status of your server jobs, you will need access to the SQL Server that houses your RS Database (AeXRSDatabase). There are two tables you will want to look at for this information; MetaJobQueue which shows all jobs that are set to run, but haven't started yet and MetaJobStatus which will list all server jobs that have ran or currently are running. In both of these tables there are Status columns which show a numerical number in them which represent the outcome of the job. Find the job you are looking for from the Description column and match it Status column code to one of the meanings listed below.
If you would like to break down and find a specific job and it's status quicker, run the following query against your RS Database (AeXRSDatabase):
Select * from MetaJobStatus
Where MetaJobType = '#' and status = '#'
Replace # with the actual number for the job type and the status. For a list of job types, refer to the MetaJobTypes table.
|
Numerical Value |
Meaning |
|
1 |
Being Created |
|
16 |
Pending |
|
272 |
Client OK to Run |
|
288 |
Client Notified |
|
512 |
Running |
|
4096 |
Error Occurred |
|
8192 |
Shutting Down |
|
16384 |
Complete |
|
16640 |
Cancelled |
|
16896 |
Complete with Errors |
|
17152 |
Could Not Run |
|
17408 |
Client Config Error |
|
17664 |
Client Not Responding |
|
17920 |
Client Unreachable |
|
18176 |
Client has exceeded space usage quota |
|
18432 |
WAN jobs restricted for client |
|
18688 |
Connection speed too low |
|
18944 |
Client has a wrong version |
|
19200 |
Server is out of free space on the storage(s) |
|
19456 |
All storages are inaccessible |
|
|
Legacy ID
47376
Article URL http://www.symantec.com/docs/HOWTO10211
Terms of use for this information are found in Legal Notices









Thank you.