× 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.



On my 7.4 system, your SQL statement works fine, from both STRSQL and ACS' Run SQL Scripts.

Whenever I run across an error like yours, where changing the name of something "fixes" the issue, I enclose the name in double quotes. E.g.:

create or replace table "usr_initial_program_override"
FOR SYSTEM name INLPGM
(prefix char(2) default ' ' primary key,
library char(10) default ' ' not null,
name char(10) default ' ' not null
);

If, by any chance, you are using PTC (MKS) Implementer change management to deploy this, I am aware that Implementer uses this double quote workaround. (But I doubt that you are, because Implementer requires you to name the table on the CREATE statement with a short name = to the source member name, then RENAME it to a long name afterwards.)

I'm also wondering whether any of the field names are causing an issue as well. Again, double quotes can resolve these.

- Dan

-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Mark Murphy
Sent: Thursday, February 8, 2024 9:37 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: I have come across an interesting SQL issue

Maybe someone can explain this.

create or replace table usr_initial_program_override
FOR SYSTEM name INLPGM
(prefix char(2) default ' ' primary key,
library char(10) default ' ' not null,
name char(10) default ' ' not null
);

The above fails with SQL Error [42710]: [SQL0601] USR_INITIAL_PROGRAM_OVERRIDE in JMMLIB type *FILE already exists.

It doesn't exist, I *ALLOBJ on this box, and I can't find it using WRKOBJ or by querying SYSTABLES. In addition:

SELECT * FROM jmmlib.usr_initial_program_override;

Fails with SQL Error [42704]: [SQL0204] USR_INITIAL_PROGRAM_OVERRIDE in JMMLIB type *FILE not found.

If I change the SQL file name, it works. I have 2 files this happened with, both ended with override, and when I changed the override part of the name to ovrd, they started working.

???
*** CONFIDENTIALITY NOTICE: The information contained in this communication may be confidential, and is intended only for the use of the recipients named above. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication, or any of its contents, is strictly prohibited. If you have received this communication in error, please return it to the sender immediately and delete the original message and any copy of it from your computer system. If you have any questions concerning this message, please contact the sender. ***

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

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.