Forum Discussion

smith_jones's avatar
10 years ago
Solved

How to specify different names for different child jobs of a policy?

Hi All,

We all know that multi-streaming is used for making child jobs of a policy so that backup time can be reduced.

But we aslo know that when the policy starts, first master job is started and then the child jobs.

Now my issue is all the child jobs have the same name ( same as master job which in turn has same name as the policy name).

This crerates issue for me when there is no availability of that policy jobs in the activity monitor. In the report that I fetch I get all the names of the child jobs and master job as same. So I cannot distinguish which child job having what backup selection (as I had streams specified in the policy) has failed. So that I can rerun them.

To overcome this difficulty is there any way that child jobs can have different names or numbering done on them or any such thing (just to prevent them from having the same names), so that it can be easy to identify them?

  • I wrote this for Mark some time back......

     

    select
    nb_JobFilesArchive.jobId as 'Job id', list (nb_JobFilesArchive.fileinfo) as 'File List',
    domain_JobArchive.clientName as 'Client',
    domain_JobArchive.policyName as 'Policy Name',
    domain_JobArchive.scheduleName as 'Schedule Name',
    (domain_JobArchive.bytesWritten / 1024) as 'Size in KB',
    lookup_JobStatuscode.id as 'Status Code',
    lookup_JobStatusCode.name as 'Exit Status',
    UTCBigIntToNomTime(domain_JobArchive.startTime) as 'Start Time',
    UTCBigIntToNomTime(domain_JobArchive.endTime) as 'End Time'
    from domain_jobarchive, nb_JobFilesArchive, lookup_JobStatuscode
    where
    domain_jobarchive.type='0'
    and
    (domain_jobarchive.id=nb_JobFilesArchive.Jobid AND domain_jobarchive.type='0')
    and
    domain_JobArchive.StatusCode=lookup_JobStatusCode.id
    group by nb_JobFilesArchive.jobId, domain_JobArchive.clientName, domain_JobArchive.policyName, domain_JobArchive.scheduleName,domain_JobArchive.bytesWritten, lookup_JobStatuscode.id, lookup_JobStatusCode.name, domain_JobArchive.startTime, domain_JobArchive.endTime order by nb_JobFilesArchive.jobId DESC

19 Replies