Problem Note 9054: PROC DB2UTIL's SSID= option does not work correctly starting in Version
8
Starting in Version 8, PROC DB2UTIL's SSID= option does not work
correctly. Rather than connecting to the subsystem specified it is
connecting to the default subsystem. As a result, the wrong table is
being looked for and will possibly be updated. To avoid this problem,
you must specify the DB2 subsystem that you want to connect to by
setting the SAS system option DB2SSID=.
For example, valid Release 6.09E syntax:
proc db2util data=sas_ds table=db2_table ssid=db2p function=i;
mapto sasvar1 = db2var1 sasvar2 = db2var2;
update;
run;
converted to the following for Version 8:
options db2ssid=db2p;
proc db2util data=sas_ds table=db2_table function=i;
mapto sasvar1 = db2var1 sasvar2 = db2var2;
update;
run;
A Technical Support hot fix for Release 8.2 (TS2M0) for this
issue is available at:
http://www.sas.com/techsup/download/hotfix/82_sbcs_prod_list.html#009054
For customers running SAS with Asian Language Support (DBCS), this
hot fix should be downloaded from:
http://www.sas.com/techsup/download/hotfix/82_dbcs_prod_list.html#009054
Operating System and Release Information
| Product Family | Product | System | Reported Release | Fixed Release* |
| SAS System | SAS/ACCESS Interface to DB2 | z/OS | 8 TS M0 | 9.1 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.
| Type: | Problem Note |
| Priority: | alert |
| Topic: | SAS Reference ==> Procedures ==> DB2UTIL
|
| Date Modified: | 2003-01-29 12:57:30 |
| Date Created: | 2002-12-12 10:35:49 |