Birgitta, I'm confused. Are you suggesting that the following doesn't work?:
create or replace table "usr_initial_program_override"
FOR SYSTEM name INLPGM ...
- Dan
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Birgitta Hauser
Sent: Friday, February 9, 2024 2:18 AM
To: 'Midrange Systems Technical Discussion' <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: RE: I have come across an interesting SQL issue
You cannot change the table name with CREATE OR REPLACE TABLE.
If you want to rename your Table, you need the RENAME Statement:
Rename Table YourSchema.YourFile
To Your_Long_SQ_Table_Name For System Name YourFile;
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
Modernization - Education - Consulting on IBM i Database and Software Architect IBM Champion since 2020
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok) "What is worse than training your staff and losing them? Not training them and keeping them!"
"Train people well enough so they can leave, treat them well enough so they don't want to. " (Richard Branson) "Learning is experience ... everything else is only information!" (Albert
Einstein)
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Mark Murphy
Sent: Thursday, 8 February 2024 15:37
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.