Was this helpful?
Work Locations
All databases use work files for sorting, which can occur when queries are executed (SELECT or FETCH statements with ORDER BY clauses) or when tables are restructured (for example, using the MODIFY statement or equivalent operation in VDBA). While small sorts are performed in memory, larger sorts use temporary sort files. Depending on the size of the tables involved in the sort, the temporary disk space requirements can be large (see Space Requirements for Sorts on page 8).
Initial and Extended Work Locations
You specify the initial, or primary, location (or use the default location) for work files when you create a database. The area mapped to this location is used for all work files.
To use additional locations, extend a database. When you extend a database in this manner, sort space can be spread among multiple work locations.
Note:  We recommend that you put work locations on scratch disks so that sorting activity does not contend with other database I/O and data disks do not become excessively fragmented.
Classification of Extended Work Locations
When extending a database to use additional work locations, classify them as follows:
Work (also known as defaultable) locations are used for all user sorts on a database.
Auxiliary locations are not used unless explicitly requested by a SET WORK LOCATIONS statement.
After a database has been extended to use an additional work location, you can subsequently modify the work area’s classification using accessdb or the Alter Database dialog in VDBA.
Work Locations for a Session
A session automatically uses all defaultable work locations to which the database has been extended (including the initial work location). In addition, the session can issue SET WORK LOCATIONS statements to specify auxiliary work locations to use. Using this statement, a session can dynamically add and drop work locations and replace the set of locations currently in use. The set work locations statements affect the current session only-their effects disappear when the session ends.
For more information on using set work locations, see the entry for the SET statement in the SQL Reference Guide.
Note:  To list the set of work locations used in a given session, you can use a trace point, DM1440. For information on setting trace points, see the SET [NO]TRACE POINT statement description in the SQL Reference Guide.
Last modified date: 11/28/2023