SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 62789: Applying a predicate such as a WHERE clause to a data set view outside of PROC SQL generates an unexpected warning message

DetailsHotfixAboutRate It

Beginning in the fifth maintenance release of SAS® 9.4 (TS1M5), an unexpected warning message like the following can be produced when you apply a WHERE clause (predicate) to a data set view outside of PROC SQL:

WARNING: Record no longer satisfies where statement.

The following code produces the warning message. The message is contained in the TEXT variable that is created by the SYSMSG function.  The SYSMSG function returns error or warning message text from the last data set or external file function that was processed. The code does produce the correct results.

data _null_;
   dsid = open('SASHELP.VSLIB (where=(upcase(libname)="METATEMP"))');
   nrows = attrn(dsid,'nlobsf');
   put nrows=;
   rc = fetch(dsid);
   text = sysmsg();
   put rc=;
   put text=;
   rc = close(dsid);
run;

The TEXT variable contains the warning message.

This code does not produce a warning message in earlier releases of SAS® software. 

To circumvent the problem, create a data set from the data set view.  This is illustrated in the sample code below:

data tmp;
   set sashelp.vslib;
run;

data _null_;
   dsid = open('work.tmp (where=(upcase(libname)="METATEMP"))');
   nrows = attrn(dsid,'nlobsf');
   put nrows=;
   rc = fetch(dsid);
   text = sysmsg();
   put rc=;
   put text=;
   rc = close(dsid);
run;

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



Operating System and Release Information

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