Problem Note 31122: SQLPLAN internal errors might occur when you select columns from an SQL view
In Base SAS® software, SQLPLAN internal errors might occur when you select columns from an SQL view or from an in-line view if one or more of the following conditions are true:
- a count(*) function and an ORDER BY clause are referenced in the outer SELECT statement
- the inner SELECT statement has an aliased column
- the outer SELECT statement redefines the aliased column and gives it a different name.
The following code illustrates syntax that can produce the SQLPLAN internal errors. Note that this code is intended to be run as a stand-alone piece of code, but it illustrates the incorrect syntax.
proc sql;
create view view1 as
select distinct
comm_level_1 as clevel
,comm_level_1
,sum(curr_inv) as base_curr_inv
from libref.table
group by clevel, comm_level_1;
create table test1 as
select count(*) as rowcount,
clevel,
comm_level1 as comm_level_2,
base_curr_inv as ordercol
from view1
order by ordercol desc;
quit;
|
Select the Hot Fix tab in this note to access the hot fix for this issue.
Operating System and Release Information
SAS System | Base SAS | z/OS | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows XP 64-bit Edition | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft® Windows® for x64 | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows 2000 Advanced Server | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows 2000 Datacenter Server | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows 2000 Server | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows 2000 Professional | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows NT Workstation | 9.1 TS1M3 SP4 | 9.1 TS1M3 SP4 |
Microsoft Windows Server 2003 Datacenter Edition | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Standard Edition | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Microsoft Windows XP Professional | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Windows Vista | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
64-bit Enabled AIX | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
64-bit Enabled HP-UX | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
64-bit Enabled Solaris | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
HP-UX IPF | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Linux | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Linux on Itanium | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
OpenVMS Alpha | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
Tru64 UNIX | 9.1 TS1M3 SP4 | 9.2 TS1M0 |
*
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.
This code is included to illustrate syntax which produces the SQLPLAN Internal errors. This code is not intended to execute.
proc sql ;
create view view1 as
select distinct
comm_level_1 as clevel
,comm_level_1
,sum(curr_inv) as base_curr_inv
from libref.table
group by clevel, comm_level_1;
create table test1 as
select count(*) as rowcount,
clevel,
comm_level1 as comm_level_2,
base_curr_inv as ordercol
from view1
order by ordercol desc ;
quit;
In Base SAS® software, SQLPLAN internal errors might occur when you select columns from an SQL view or from an in-line view
Type: | Problem Note |
Priority: | high |
Date Modified: | 2008-02-19 16:25:09 |
Date Created: | 2008-02-06 14:27:16 |