Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The DSN_DELETE_EXCLUDE option can be specified multiple times. All specified data sets are added to the list of data sets to exclude from delete processing.

Usage

...

cellspacing0
styletext-align: left; width: 100%;
classOptions-5

...

stylebackground-color: #F0F0F0; border-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: middle; width: 151.2pt;

Method

...

...

Syntax

...

...

IBM i

...

...

HP NonStop

...

...

UNIX

...

...

Windows

...

z/OS

...

Configuration File Keyword

...

...

dsn_delete_exclude dataset [,dataset]...

...

styleborder-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: top;

...

styleborder-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: top;

...

styleborder-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: top;

...

...

styleborder-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: top;





(tick)

Value

dataset is the name of a data set to exclude from delete processing.

...

There is no default value.

Examples

<pre>
dsn_delete_exclude    sys1.*,sys2.*,app.prod.data
</pre>
Panel
Html bobswift

This example excludes all data sets starting with SYS1. and SYS2. and fully-qualified data set APP.PROD.DATA from UAG data set delete processing. UAG will never delete these data sets, even when it would be necessary to successfully execute or re-run a job.
 

html-bobswift
Panel
<pre>
dsn_delete_exclude    sys1.*
dsn_delete_exclude    sys2.*
dsn_delete_exclude    app.prod.data
</pre>

This example excludes the same data sets as the previous example from delete processing. The DSN_DELETE_EXCLUDE option is used multiple times to specify each of the data sets to be excluded instead of a comma-separated list of data set names.
 

html-bobswift
Panel
<pre>
dsn_delete_exclude    *
</pre>

This example excludes all data sets from delete processing.