Previous Topic: SQL Server Types

Next Topic: Sample Batch Files

How to Submit Batch Files Through the CA RCM Portal

You submit batch files for processing in one of the following ways:

When you define a batch data connector job in the CA RCM portal, the batch file you specify must contain the following attribute:

USE_CONFIG

Defines the destination configuration file for batch file operations. Typically this value is the same as the DEST_FILE attribute.

Specify this attribute in addition to the DEST_FILE attribute in batch files that are submitted for processing through the CA RCM portal.

Example: Batch File Processed by CA RCM Portal

The batch file in this example can be specified in a batch data connector job on the CA RCM portal because it includes the USE_CONFIG attribute.

<BATCH>
<COMMAND CONTINUE_ON_FAIL="true"
ACTION="IMPORT SQL"
SERVER="MSSQL_hostname"
DATABASE="eurekify_sdb"
SRC_FILE="SQL://BaseConfigModel.cfg"
DEST_FILE="OUTPUT/BaseConfigModel.cfg"/>
<USE_CONFIG config="OUTPUT/BaseConfigModel.cfg"/>
</BATCH>