× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I was trying to create a bakcup of some data before a did a mass update and thoguht 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 staement 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.

-Tom Stieger
California Fine Wire

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.