×
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.
 
Good question
STRSQL
CREATE TABLE ROB/TESTSSD (MYCHAR CHAR (254 ))
INSERT INTO ROB/TESTSSD 
SELECT 'TEST' FROM QSYS2/SYSCOLUMNS 
2971150 rows inserted in TESTSSD in ROB.
CHGPF ROB/TESTSSD UNIT(*SSD) 
  File TESTSSD in library ROB changed.
Instant reply back.  Either it backgrounds the task, or it gives up 
because there is currently no SSD.  I think it's the former.  If it was 
the latter it should reply back with a message.
Nothing in QSYSOPR, DSPLOG, WRKPRB, Product Activity Log.  These entries 
in the LIC log about 30 sec after commands:
Entry     Major                    Major Minor 
ID        Description              Code  Code  Date      Time 
0400583A  Tolerance                0400  0000  01/14/10  10:31:15
0400583B  Tolerance                0400  0000  01/14/10  10:31:15
...
Don't know if related.
DSPFD ROB/TESTSSD 
Preferred storage unit  . . . . . . . . . . : UNIT       255
DSPFD ROB/BERENDT
Preferred storage unit  . . . . . . . . . . : UNIT       *ANY
Gee, maybe since UNIT was deprecated it assigned a special value to *SSD 
and that unit number is now hijacked?  Let me decompile the command...
Yep, that's it.  You enter *SSD and it converts that to 255.
PARM       KWD(UNIT) + 
           TYPE(*INT2) + 
           DFT(*SAME) + 
           RANGE( + 
             1 + 
             255) + 
           SPCVAL( + 
             (*SAME -2) + 
             (*ANY 0) + 
             (*SSD 255)) + 
           EXPR(*YES) + 
           PROMPT('Preferred storage unit' 20)
Aha!  A bug!  DSPFD needs to be updated!  I'll report that.
Rob Berendt
As an Amazon Associate we earn from qualifying purchases.