SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 65105: The REPLICATION= table option is ignored when you use the WHERE clause while creating a CAS table

DetailsHotfixAboutRate It

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

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS ViyaLinux for x643.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.