Periodically, QMF objects might become too large for the dbspace that contains the QMF object control tables Q.OBJECT_DIRECTORY, Q.OBJECT_DATA, AND Q.OBJECT_REMARKS.
Use the DB2 DBS utility to enlarge the dbspace for the QMF object control tables:
Table 60 shows the dbspace names and default sizes for the QMF object control tables. Dbspace names for other QMF control tables are shown in "Appendix D. QMF Control Tables and Dbspaces Used by QMF" on page 325.
All dbspaces for the QMF control tables are public. The sizes are given in pages, where each page is one 4,096-byte block.
Dbspace name |
Contents |
Default size |
---|---|---|
DSQTSCT1 |
Q.OBJECT_DIRECTORY table |
256 pages |
DSQTSCT2 |
Q.OBJECT_REMARKS table |
256 pages |
DSQTSCT3 |
Q.OBJECT_DATA table |
5120 pages |
ACQUIRE PUBLIC DBSPACE NAMED PUBLIC.DSQxxxxx (PAGES=xxx, PCTFREE=25, LOCK=ROW)
CREATE VIEW Q.DSQEC_QMFOBJS (OWNER, TNAME, TYPE, SUBTYPE, MODEL, RESTRICTED, REMARKS, LABEL, LOCATION, OWNER_AT_LOCATION, NAME_AT_LOCATION) AS SELECT A.OWNER, A.NAME, A.TYPE, SUBTYPE, MODEL, RESTRICTED, REMARKS, ' ', ' ', ' ' FROM Q.OBJECT_DIRECTORY A, Q.OBJECT_REMARKS B WHERE A.OWNER = B.OWNER AND A.NAME = B.NAME AND (A.OWNER = USER OR RESTRICTED = 'N')
to PUBLIC:
GRANT SELECT ON Q.DSQEC_QMFOBJS TO PUBLIC
ALTER DBSPACE PUBLIC.DSQTSCT1 (PCTFREE=5)
For more information on enlarging dbspaces, see the appropriate DB2 Server Database Administration Guide. For instructions and syntax of the DBS utility and ISQL commands, see theDB2 Server for VSE and VM Database Services Utility manual and the DB2 Server for VSE and VM SQL Reference manual.
[ Previous Page | Next Page | Contents | Index ]