Changing Job Options - BAR - Data Stream Architecture - Learn how to use the XML file to change job options for any backup, restore, or analyze job.

Teradata® DSA User Guide

Product
BAR
Data Stream Architecture
Release Number
16.20
Published
November 2019
Language
English (United States)
Last Update
2019-11-27
dita:mapPath
xfr1514490991957.ditamap
dita:ditavalPath
3150_DSA_UG_1650-working-RR-new.ditaval
dita:id
B035-3150
lifecycle
previous
Product Category
Software
Teradata Tools and Utilities
You can change job options for any backup, restore, or analyze job by amending the job options in the XML file containing the job definition.
  1. Open the XML file containing the job definition information.
  2. Under <job_options>, list the necessary job options and place the appropriate value within the job tags.
    Note the following restrictions on job options:
    • If single_object_locking is true and online is true, the backup job fails.
    • If single_object_locking is true and data_phase is DICTIONARY, the backup job fails.
    • If single_object_locking is true, a DBC-only backup job is rejected.
    The following example shows the job options section in the XML file for a restore job:
    <job_options>
        <!--    Optional, true/false  --> 
        <data_phase>DATA</data_phase> 
        <!--    Optional, true/false  --> 
        <enable_temperature_override>true</enable_temperature_override> 
        <!--    Optional, enum type, COLD/WARM/HOT  --> 
        <temperature_override>HOT</temperature_override> 
        <!--    Optional, enum type, DEFAULT/ON/OFF  -->  
        <block_level_compression>ON</block_level_compression>
        <!--    Optional, true/false  --> 
        <disable_fallback>false</disable_fallback> 
        <!--    Optional, max 2048 characters  --> 
        <query_band>queryband</query_band>
        <!--  Optional, starts with upper case ( Error/Info/Debug/Warning )  --> 
        <dsmain_logging_level>Debug</dsmain_logging_level> 
        <!--  'reblock' - Optional, accepted values: true/false  --> 
        <!--  Note: Only useful for RESTORE jobs.  --> 
        <reblock>true</reblock> 
        <!--    Optional, true/false  --> 
        <run_as_copy>true</run_as_copy> 
    <job_options>