I would like to model a simple "name->blob" structure to be used from Java using jt400.jar (essentially to store large, unchanging files inside the database instead of in the IFS) which is easily done with a
CREATE TABLE TRATEST/X (NAME VARCHAR (256 ) NOT NULL WITH
DEFAULT, BLOB BLOB NOT NULL WITH DEFAULT, BLOBPART INT NOT NULL
WITH DEFAULT)
(verbosity due to F4 usage) which creates a file X looking like I want it to.
Now for logistic reasons I would like to have several members (like A, B and C) in X, each modelling its own file set, but I cannot run ADDPFM as I get the error that there are more members than maximum allowed, and I cannot run CFGPF FILE(tratest/x) MAXMBRS(*nomax) as it reports the value not to be valid. Some further reading on CPD3213 indicates that this is because the file was created as a SQL table.
Is there a way to get what I want - a file with a blob field and several (EDIT: specifically named) members which I can access from Java?