Well, I hope the original poster
did allocate more than one block block in his new PDS.
Long ago I had figured out I could allocate just 5 members with ISPF statistics in a one directory block PDS, with the space used in the directory block distributed like this:
Total
Size Number Size
Directory block used bytes 2 1 2
"EOF" member 12 1 12
Member Entries 42 5 210
224
You cannot store a 6th member. I then tried load modules; I was able to store 6 members, with the space used in the directory block distributed like this:
Total
Size Number Size
Directory block used bytes 2 1 2
"EOF" member 12 1 12
Member Entries 36 6 216
230
These are the minimum length directory entries for load modules. There are several ways to create longer directory entries, but most of those methods are beyond the presumptive skill level of most of the readers of this board. One method is not beyond this skill level: alias entries are longer than minimum length directory entries:
Total
Size Number Size
Directory block used bytes 2 1 2
"EOF" member 12 1 12
Member Entry 36 1 36
Alias Entries 46 4 184
234
I was slightly annoyed that the binder stored nothing when I tried to create 5 alias entries, but this may make some sense. A dump of this directory block is:
0000 0 00EAD4F0 F0F0F0F0 F0F10000 032C0000 *..M0000001......*
0010 16 09000000 000002E2 00304830 48000000 *.......S........*
0020 32 88000101 0000D4F0 F0F0F0F0 F0F20000 *h.....M0000002..*
0030 48 03B10000 09000000 000002E2 00304830 *...........S....*
0040 64 48000000 88000100 0000D4F0 F0F0F0F0 *....h.....M00000*
0050 80 F0F10100 D4F0F0F0 F0F0F0F3 000003B1 *01..M0000003....*
0060 96 00000900 00000000 02E20030 48304800 *.........S......*
0070 112 00008800 01000000 D4F0F0F0 F0F0F0F1 *..h.....M0000001*
0080 128 0100D4F0 F0F0F0F0 F0F40000 03B10000 *..M0000004......*
0090 144 09000000 000002E2 00304830 48000000 *.......S........*
00A0 160 88000100 0000D4F0 F0F0F0F0 F0F10100 *h.....M0000001..*
00B0 176 D4F0F0F0 F0F0F0F5 000003B1 00000900 *M0000005........*
00C0 192 00000000 02E20030 48304800 00008800 *.....S........h.*
00D0 208 01000000 D4F0F0F0 F0F0F0F1 0100FFFF *....M0000001....*
00E0 224 FFFFFFFF FFFF0000 00000000 00000000 *................*
00F0 240 00000000 00000000 00000000 00000000 *................*
So our original poster is going to have to give us more information about what he is doing if we can have any hope of helping him further.