SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 62577: Using a WHERE clause with multiple AND conditions for a SASHELP view might return an incorrect result

DetailsHotfixAboutRate It

After you use a SASHELP view with a WHERE clause that contains multiple conditions, you might see that an incorrect number of rows is returned.

The following code example generates an error that returns zero rows:

data WORK.DATASET01; a=1;run;
data WORK.DATASET02; b=2;run;
data WORK.DATASET03; c=3;run;
data test;
   set sashelp.vstable;
   where libname eq "WORK"
         and substr(memname,1,8) = "DATASET0" and memname ne "DATASET03";
run;

A workaround is to use an IF statement that can return the correct number of rows. An example follows:

data test;
   set sashelp.vstable;
   if libname eq "WORK"
      and substr(memname,1,8) = "DATASET0" and memname ne "DATASET03";
run;

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemBase SASz/OS9.4_M49.4_M69.4 TS1M49.4 TS1M6
z/OS 64-bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft® Windows® for x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8 Enterprise 32-bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8 Enterprise x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8 Pro 32-bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8 Pro x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8.1 Enterprise 32-bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8.1 Enterprise x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8.1 Pro 32-bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 8.1 Pro x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows 109.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows Server 20089.4_M49.4 TS1M4
Microsoft Windows Server 2008 R29.4_M49.4 TS1M4
Microsoft Windows Server 2008 for x649.4_M49.4 TS1M4
Microsoft Windows Server 2012 Datacenter9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows Server 2012 R2 Datacenter9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows Server 2012 R2 Std9.4_M49.4_M69.4 TS1M49.4 TS1M6
Microsoft Windows Server 2012 Std9.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Enterprise 32 bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Enterprise x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Home Premium 32 bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Home Premium x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Professional 32 bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Professional x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Ultimate 32 bit9.4_M49.4_M69.4 TS1M49.4 TS1M6
Windows 7 Ultimate x649.4_M49.4_M69.4 TS1M49.4 TS1M6
64-bit Enabled AIX9.4_M49.4_M69.4 TS1M49.4 TS1M6
64-bit Enabled Solaris9.4_M49.4_M69.4 TS1M49.4 TS1M6
HP-UX IPF9.4_M49.4_M69.4 TS1M49.4 TS1M6
Linux for x649.4_M49.4_M69.4 TS1M49.4 TS1M6
Solaris for x649.4_M49.4_M69.4 TS1M49.4 TS1M6
* 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.