Enabling Auto Create Batch history logging and batch statistics settings


Version: R75

Article ID: PC000068

Enabling Auto Create Batch history logging and batch statistics settingsmain image

Description

This document describes how to enable Batch Statistics and History Logging for the initial batch in the Auto Create Batch sample script.

Summary

By default, the Auto Create Batch 1 sample script has Batch Statistics and History Logging options disabled. To assist in troubleshooting the script, follow the recommend changes below to turn on additional logging.

To enable batch statistics change line 92:

// don't record statistics for this "parent" batchthis.Batch.RecordStatistics = false;

To:

// don't record statistics for this "parent" batchthis.Batch.RecordStatistics = true;

To enable history logging change line 95:

// don't log history for this "parent" batchthis.Batch.LogHistory = false;

To:

// don't log history for this "parent" batchthis.Batch.LogHistory = true;

Note: Enabling this setting will create a PVCSLOG file that may grow very large.