Changing Job Options - Data Stream Architecture

Teradata Data Stream Architecture (DSA) User Guide

Product
Data Stream Architecture
Release Number
16.10.01
Published
November 2017
Language
English (United States)
Last Update
2018-04-17
dita:mapPath
fyx1509665931452.ditamap
dita:ditavalPath
3150_DSA_UG_1610.ditaval.ditaval
dita:id
B035-3150
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.
    True is not an available value for the disable_fallback XML command. Enter the value as follows: <disable_fallback>false</disable_fallback>.
    If the XML file has the commands <run_as_copy>false</run_as_copy> and <disable_fallback>true</disable_fallback>, the system displays an error when the job is run.
    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> 
        <!--    Optional, true/false  --> 
        <nowait>true</nowait> 
        <!--  '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> 
        <!--    Optional, max 32 characters  --> 
        <saveset_user>barem</saveset_user> 
        <!--    Optional, max 32 characters  --> 
        <saveset_password>barem</saveset_password>
    <job_options>