SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 63571: SOAP requests might have poor performance in SAS® Pack Optimization

DetailsHotfixAboutRate It

In SAS Pack Optimization, the processing of SOAP requests might perform poorly. This issue is likely to occur when there are a large number of old request records in the PROCESS_STATUS table.

You can identify the number quantity of old request records in the table by running the following query in a SAS session where the MI libraries are allocated. For example, if you want to determine the number of records older than January 01, 2019, then run a query similar to the following:

PROC SQL;
    SELECT COUNT (*) FROM DI_DM2.PROCESS_STATUS
    WHERE START_DTTM < '01JAN2019:00:00:00'dt;
QUIT;

It is recommended that you clean up this table on a regular basis.

In addition to cleaning up the PROCESS_STATUS table, you can also add the following alternate indexes by running the SQL below directly in ORACLE in your DI_DM instance:

CREATE INDEX PROC_STATUS_IX2 on DI_DM.PROCESS_STATUS (CONTEXT_SK,PROCESS_STATUS_CD);
CREATE INDEX PROC_STATUS_IX3 on DI_DM.PROCESS_STATUS (CONTEXT_SK);

The addition of these indexes prevents full table scans on the PROCESS_STATUS table when processing SOAP requests.

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 SystemSAS Pack OptimizationMicrosoft® Windows® for x643.419.4 TS1M4
Microsoft Windows 8 Enterprise 32-bit3.419.4 TS1M4
Microsoft Windows 8 Enterprise x643.419.4 TS1M4
Microsoft Windows 8 Pro 32-bit3.419.4 TS1M4
Microsoft Windows 8 Pro x643.419.4 TS1M4
Microsoft Windows 8.1 Enterprise 32-bit3.419.4 TS1M4
Microsoft Windows 8.1 Enterprise x643.419.4 TS1M4
Microsoft Windows 8.1 Pro 32-bit3.419.4 TS1M4
Microsoft Windows 8.1 Pro x643.419.4 TS1M4
Microsoft Windows 103.419.4 TS1M4
Microsoft Windows Server 20083.419.4 TS1M4
Microsoft Windows Server 2008 R23.419.4 TS1M4
Microsoft Windows Server 2008 for x643.419.4 TS1M4
Microsoft Windows Server 2012 Datacenter3.419.4 TS1M4
Microsoft Windows Server 2012 R2 Datacenter3.419.4 TS1M4
Microsoft Windows Server 2012 R2 Std3.419.4 TS1M4
Microsoft Windows Server 2012 Std3.419.4 TS1M4
Windows 7 Enterprise 32 bit3.419.4 TS1M4
Windows 7 Enterprise x643.419.4 TS1M4
Windows 7 Home Premium 32 bit3.419.4 TS1M4
Windows 7 Home Premium x643.419.4 TS1M4
Windows 7 Professional 32 bit3.419.4 TS1M4
Windows 7 Professional x643.419.4 TS1M4
Windows 7 Ultimate 32 bit3.419.4 TS1M4
Windows 7 Ultimate x643.419.4 TS1M4
Linux for x643.419.4 TS1M4
* 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.