Common Parameter: casouttablebasic

CASL Syntax

casouttablebasic={
caslib=" string",
label=" string",
name=" table-name",
onDemand=TRUE | FALSE,
promote=TRUE | FALSE,
replace=TRUE | FALSE,
replication= integer
}

Parameter Descriptions

Alias
caslib="string"

specifies the name of the caslib to use.

label="string"

specifies the descriptive label to associate with the table.

name="table-name"

specifies the name to associate with the table.

onDemand=TRUE | FALSE

when set to True, table access is less aggressive with virtual memory use.

DefaultTRUE
promote=TRUE | FALSE

when set to True, the output table is added with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.

DefaultFALSE
replace=TRUE | FALSE

specifies whether to overwrite an existing table with the same name.

DefaultFALSE
replication=integer

specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure.

Default1
Minimum value0

Lua Syntax

casouttablebasic={
caslib=" string",
label=" string",
name=" table-name",
onDemand=true | false,
promote=true | false,
replace=true | false,
replication= integer
}

Parameter Descriptions

Alias
caslib="string"

specifies the name of the caslib to use.

label="string"

specifies the descriptive label to associate with the table.

name="table-name"

specifies the name to associate with the table.

onDemand=true | false

when set to True, table access is less aggressive with virtual memory use.

Defaulttrue
promote=true | false

when set to True, the output table is added with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.

Defaultfalse
replace=true | false

specifies whether to overwrite an existing table with the same name.

Defaultfalse
replication=integer

specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure.

Default1
Minimum value0

Python Syntax

casouttablebasic={
" caslib":" string",
" label":" string",
" name":" table-name",
" onDemand":True | False,
" promote":True | False,
" replace":True | False,
" replication": integer
}

Parameter Descriptions

Alias
"caslib":"string"

specifies the name of the caslib to use.

"label":"string"

specifies the descriptive label to associate with the table.

"name":"table-name"

specifies the name to associate with the table.

"onDemand":True | False

when set to True, table access is less aggressive with virtual memory use.

DefaultTrue
"promote":True | False

when set to True, the output table is added with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope.

DefaultFalse
"replace":True | False

specifies whether to overwrite an existing table with the same name.

DefaultFalse
"replication":integer

specifies the number of copies of the table to make for fault tolerance. Larger values result in slower performance and use more memory, but provide high availability for data in the event of a node failure.

Default1
Minimum value0