By kimot, 22 May, 2023

You can also check actual settings on other files in your libraries.

First run this SQL to collect information about object sizes in all user libraries on your system.

CREATE TABLE YourLibrary.FileName AS (SELECT OBJNAME, OBJLIB,
OBJTYPE, OBJCREATED, OBJSIZE FROM TABLE                    
(QSYS2.OBJECT_STATISTICS('*ALLUSR','*ALL')) X ) WITH DATA  

After this step you can list all files with *MAX4GB ordered by file size.

By kimot, 24 March, 2023
CHGMSGD MSGID(CPI6705) MSGF(ADMSYS/QCPFMSG) FMT((*CHAR 17) (*CHAR 10) 
(*CHAR 6) (*CHAR 10) (*UBIN 8) (*CHAR 10) (*CHAR 6) (*CHAR 10) (*DTS) (*DTS) (*ITV))
By kimot, 21 March, 2023
dcl-pr ShowMSG extpgm('QMHSNDPM');      
 *n char(7) const;                      
 *n char(20) const;                     
 *n char(32767) const options(*varsize);
 *n int(10) const;                      
 *n char(10) const;                     
 *n char(10) const;                     
 *n int(10) const;                      
 *n char(4);                            
 *n char(32767) options(*varsize);      
end-pr;                                 
                                        
                                        
dcl-ds ErrorCode;