|
I was trying to create a backup of some data before a did a mass
update and thought this would work:
create table mylib.FILE_BACKUP as
(
select
rthd, opseq, opdsc
from
amflibp.rtghdr join
amflibp.rtgopr
using (STID, RTID, RTVR)
) with data
;
The underlying SQL for the select statement works, but the create
table causes the following errors:
SQL State: 58004
Vendor Code: -901
Message: [SQL0901] SQL system error. Cause . . . . . : An SQL system
error has occurred...The previous message identifier was MCH3601.
Internal error type 6101 has occurred...
MCH3601: Pointer not set for location referenced.
When I change my select statement to use on criteria in the join it
works just fine.
create table mylib.FILE_BACKUP as
(
select
rthd, opseq, opdsc
from
amflibp.rtghdr A join
amflibp.rtgopr B
on A.stid=B.stid and A.rtid = B.rtid and A.rtvr = B.rtvr
) with data
;
Does anyone know why the USING clause doesn't work with the "CREATE
TABLE as (select statement) with data"?
We are at 6.1.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.