Usage Note 1805: PROC DB2EXT does not support SSID= option starting in Version 8
Starting in Version 8, PROC DB2EXT no longer supports the SSID=
option. 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 db2ext ssid=db2p out=sas_ds;
select * from db2_table;
run;
converted to Version 8 syntax becomes:
options db2ssid=db2p;
proc db2ext out=sas_ds;
select * from db2_table;
run;
This has been fixed starting in Release 8.2 TS2M0.
Operating System and Release Information
| SAS System | SAS/ACCESS Interface to DB2 | z/OS | 8 TSD1 | 8.2 TS2M0 |
*
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: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> Procedures ==> DB2EXT
|
| Date Modified: | 2000-03-10 13:07:43 |
| Date Created: | 2000-03-10 13:07:43 |