We are upgrading from Oracle 8.1.7 to 10.2.0.1.0 we currently use this command in Oracle 8;
SELECT MAX (EXTENT_ID),SEGMENT_NAME FROM DBA_EXTENTS
WHERE OWNER LIKE 'OWNER_NAME%' AND EXTENT_ID >0 GROUP BY
SEGMENT_NAME ORDER BY MAX (EXTENT_ID) DESC;
Please note I substuted Owner_Name for the real owner name. Also this command in oracle 8 may take 20 to 30 seconds in Oracle 10 it may take 20 to 30 minutes. Can anyone offer any other suggestions for getting an extent list?
Start Free Trial