Common Parameter: casouttablebasic
CASL Syntax
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.
| Default | TRUE |
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.
| Default | FALSE |
replace=TRUE | FALSE
specifies whether to overwrite an existing table with the same name.
| Default | FALSE |
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.
| Default | 1 |
| Minimum value | 0 |
Lua Syntax
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.
| Default | true |
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.
| Default | false |
replace=true | false
specifies whether to overwrite an existing table with the same name.
| Default | false |
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.
| Default | 1 |
| Minimum value | 0 |
Python Syntax
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.
| Default | True |
"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.
| Default | False |
"replace":True | False
specifies whether to overwrite an existing table with the same name.
| Default | False |
"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.
| Default | 1 |
| Minimum value | 0 |