Set default storage areas for creating database objects
- Last Updated: February 11, 2026
- 2 minute read
- OpenEdge
- Version 13.0
- Documentation
By default, ABL and SQL create new database objects in the schema area, and the Data Dictionary creates new database objects in the next storage area after the schema area. To take advantage of the performance capabilities of Type II areas, you can specify a default area for the creation of tables, LOBs, and indexes, so that they are created in a Type II area instead of a Type I area like the schema area. You may also change the default object creation area at any time, whether or not the database is running.
Set default storage areas with the PROUTIL utility
PROUTIL qualifiers let you set and show the default storage areas by object type:
- For syntax to set default storage areas, see PROUTIL SETOBJECTDEFAULTAREA qualifier.
- For syntax to show default storage areas, see PROUTIL DISPOBJECTDEFAULTAREA qualifier.
mylobdefault as the default area where large objects
will be created.
|
Set default storage areas with the Data Dictionary
The Data Dictionary also supports updating (set/reset) default area for table/index/lob. To update, click the drop down list to select the default area. If you select blank, the default area will be reset to the existing default area.
Set default storage areas with SQL
To set the default areas in SQL, use the SET DATABASE DEFAULT AREA statement. For details, see SET DATABASE DEFAULT AREA.