Problem Note 65105: The REPLICATION= table option is ignored when you use the WHERE clause while creating a CAS table
The REPLICATION= table option is ignored when you use the WHERE clause while creating a CAS table.
When the value of the REPLICATION= table option is greater than 0, the number of total blocks should exceed the number of active blocks in the table. When a WHERE clause is used while creating the table, the REPLICATION= table option is ignored and the total number of blocks is equal to the number of active blocks.
The workaround is to use a DATA step and use the COPIES= option in the DATA statement. The COPIES= option has the same functionality of the REPLICATION= table option in the CAS procedure.
Here is an example:
data casuser.test(copies=1);
set sashelp.cars;
run;
Operating System and Release Information
SAS System | SAS Viya | Linux for x64 | 3.4 | | | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | medium |
Date Modified: | 2019-11-13 14:09:22 |
Date Created: | 2019-11-12 14:36:33 |