Problem Note 56962: The error "File EVM_ACM.IOMSERVERS.DATA does not exist" might occur when you attempt to stage the EVM_ACM.IOMSERVERS table
If you attempt to stage data from the SAS Environment Manager IOMSERVERS table (EVM_ACM.IOMSERVERS.DATA) in SAS® IT Resource Management 3.6, the staging job might fail and generate the following error:
File EVM_ACM.IOMSERVERS.DATA does not exist.
Typically, this error occurs when SAS Environment Manager 2.5 (or later) is installed, which results in changes in tables in the SAS Environment Manager data mart. The EVM_ACM.IOMSERVERS table is replaced by the EVM_ACM.SASAPPSERVERS and EVM_ACM.SASLOGICALSERVERS tables.
To circumvent this error, submit the code below. This code first sorts the EVM_ACM.SASLOGICALSERVERS table by DATETEIME and NAME. Then the code combines the EVM_ACM.SASAPPSERVERS and EVM_ACM.SASLOGICALSERVERS tables to create a new EVM_ACM.IOMSERVERS table in a Base SAS® session.
libname evm_acm "C:\SAS\Config\Lev1\Web\SASEnvironmentManager\emi-framework\Datamart\acm";
libname evm_fmt "C:\SAS\Config\Lev1\Web\SASEnvironmentManager\emi-framework\Datamart\evdmfmts";
options fmtsearch=(evfmt.formats);
proc sort data=evm_acm.saslogicalservers out=work.saslogicalservers;
by datetime name;
run;
data evm_acm.iomservers;
set work.saslogicalservers set evm_acmsasappservers;
by datetime name;
run;
Operating System and Release Information
SAS System | SAS IT Resource Management | z/OS | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft® Windows® for x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Enterprise 32-bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Enterprise x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Pro 32-bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Pro x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Enterprise 32-bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Enterprise x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Pro | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Pro 32-bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 10 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2008 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2008 R2 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2008 for x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 Datacenter | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 R2 Datacenter | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 R2 Std | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 Std | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Enterprise 32 bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Enterprise x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Home Premium 32 bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Home Premium x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Professional 32 bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Professional x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Ultimate 32 bit | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Ultimate x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
64-bit Enabled AIX | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
64-bit Enabled Solaris | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
HP-UX IPF | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Linux for x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
Solaris for x64 | 3.6 | 3.7 | 9.4 TS1M2 | 9.4 TS1M3 |
*
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.
Type: | Problem Note |
Priority: | medium |
Date Modified: | 2016-01-08 13:20:53 |
Date Created: | 2015-10-29 11:44:47 |