| 4. |
This question is based on the alert monitor script shown below. What best describes the method for detecting objects with more than 600 extents?
-- Objects with more than 600 extents
-- Applied NVL function purposely to extents column.
SELECT SUBSTR(owner, 1, 22) owner,
SUBSTR(segment_name, 1, 30) object_name,
SUBSTR(segment_type, 1, 8) type,
extents
FROM dba_segments
WHERE 600 < NVL(extents, 1)
AND segment_type IN ('TABLE', 'INDEX', 'ROLLBACK')
ORDER BY 1, 3, 4 DESC, 2;
Please select the best answer.
|