The database manager reads the storage pools specification file from the top down, reading each specification in sequence. It starts with every pool's specifications set to the default values, and updates the current settings with every line it encounters. For example, consider the following specification file:
-- Storage Pool Specification File 4-5 SEQ -- Line 1 1 DS2 -- Line 2 4 DS5 -- Line 3 2-3 BLK -- Line 4 |
As the database manager reads the file, pools 1 through 5 will all start with Data Spaces Support on, a working storage residency priority of 3, and striping on.
You can also achieve the same results with the following specification file:
-- Storage Pool Specification File 1 DS2 STR 2 BLK STR 3 BLK STR 4 DS5 SEQ 5 DS3 SEQ |
While both files are effectively the same, the second file defines each pool without relying on default values and is much easier to read and decipher.