Problem Note 55335: PROC DS2 code that uses a custom PROC FCMP function might produce errors when it is run on a remote server
Some or all of the following errors can occur when you create a custom function with the FCMP procedure and you call that function in PROC DS2 code that is run on a remote SAS® server:
ERROR: Compilation error.
ERROR: [08102]Connection string, DSN or file DSN syntax or usage error
(0x80fff833)
ERROR: [HY000]Parsing failed at or near column 1025: Columns 1009-1024 =
"ATH={E:\Program " (0x813fe810)
ERROR: [HY000]Matching close quote not found in value. (0x813fe80f)
ERROR: [08003]Connection does not exist (0x80fff82e)
ERROR: [08003]Connection does not exist (0x80fff82e)
ERROR: Line 35: FCMP library base.fcmpsubs does not exist.
The Full Code tab contains example code that illustrates the problem.
There is currently no circumvention for this problem.
Click the Hot Fix tab in this note to access the hot fix for this issue.
Operating System and Release Information
SAS System | Base SAS | Microsoft Windows 8.1 Enterprise 32-bit | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Enterprise x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Pro | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8.1 Pro 32-bit | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 R2 Std | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 R2 Datacenter | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 Datacenter | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2008 for x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2008 R2 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2008 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Enterprise 32 bit | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows Server 2012 Std | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Pro x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Pro 32-bit | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Enterprise x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft Windows 8 Enterprise 32-bit | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft® Windows® for x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.4 TS1M2 | |
z/OS | 9.4 TS1M2 | 9.4 TS1M3 |
Z64 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Enterprise x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Home Premium 32 bit | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Home Premium x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Professional 32 bit | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Professional x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Ultimate 32 bit | 9.4 TS1M2 | 9.4 TS1M3 |
Windows 7 Ultimate x64 | 9.4 TS1M2 | 9.4 TS1M3 |
64-bit Enabled AIX | 9.4 TS1M2 | 9.4 TS1M3 |
64-bit Enabled HP-UX | 9.4 TS1M2 | 9.4 TS1M3 |
64-bit Enabled Solaris | 9.4 TS1M2 | 9.4 TS1M3 |
HP-UX IPF | 9.4 TS1M2 | 9.4 TS1M3 |
Linux for x64 | 9.4 TS1M2 | 9.4 TS1M3 |
Solaris for x64 | 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.
The FCMP procedure creates a custom function and PROC DS2 uses the FCMP package so that the custom functions can be used.
options cmplib = WORK.funcs;
proc fcmp outlib = work.funcs.match;
function kwadrat(a);
return (a*a);
endsub;
run;
proc ds2;
package pkg /overwrite=yes language='fcmp' table='work.funcs';
run;
quit;
Type: | Problem Note |
Priority: | medium |
Topic: | SAS Reference ==> Procedures
|
Date Modified: | 2015-03-10 11:58:49 |
Date Created: | 2015-03-06 15:36:46 |