Problem Note 3342: PROC DBLOAD creates table in wrong schema location and/or
PROC DBLOAD APPEND attempts to append to a table in the wrong schema
location or the table appears to not exist
When you attempt to use PROC DBLOAD to load a DB2 table or when you
attempt to use PROC DBLOAD APPEND to append to an existing DB2 table
using SAS V8 and you specify a schema different from the default, the
table may be loaded into the default schema instead of the specified
schema OR you may receive the error message
ERROR: DB2 table already exists
For example:
proc dbload dbms=db2_unix data=test;
user=user1;
using=using1;
table=user2.table;
load;
run;
The log indicates that the user2.table is created, but when you try to
access the table under user2, it is not there. However, the table is
created as user1.table.
To work around this problem, use the LIBNAME Access engine to create
DB2 tables.
To resolve this problem, upgrade to SAS V8.2, or, in V8.1, download the
following file from ftp.sas.com using a BINARY transfer:
/techsup/download/maint/access/db2/AIXR/8.10/sasdbudb.dbload_schema
Place the file in the !SASROOT/sasexe directory, rename it to
"sasdbudb" and be sure the file has READ and EXECUTE permissions
(i.e chmod 755 sasdbudb).
Operating System and Release Information
| Product Family | Product | System | Reported Release | Fixed Release* |
| SAS System | SAS/ACCESS Interface to DB2 | Solaris | 8 TS M0 | 8.2 TS2M0 |
| 64-bit Enabled Solaris | 8 TS M0 | 8.2 TS2M0 |
| ABI+ for Intel Architecture | 8 TS M0 | 8.2 TS2M0 |
| IRIX | 8 TS M0 | 8.2 TS2M0 |
| 64-bit Enabled AIX | 8 TS M0 | 8.2 TS2M0 |
| 64-bit Enabled HP-UX | 8 TS M0 | 8.2 TS2M0 |
| HP-UX | 8 TS M0 | 8.2 TS2M0 |
| Tru64 UNIX | 8 TS M0 | 8.2 TS2M0 |
| AIX | 8 TS M0 | 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: | Problem Note |
| Priority: | high |
| Topic: | SAS Reference ==> Procedures ==> DBLOAD
|
| Date Modified: | 2001-03-27 16:45:10 |
| Date Created: | 2000-08-29 10:56:47 |