Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Script to find space bound objects
Jack,
Here's one that we use..
CREATE OR REPLACE VIEW SPACE_BOUND_OBJECTS
( TS#,
NAME,
BLOCKSIZE,
MAXFREEBLOCKS,
TOTFREEBLOCKS,
FREEEXTENTS ) AS
select a.ts#,a.name,a.blocksize,
nvl(max(b.blocks),0), nvl(sum(b.blocks),0), nvl(sum(b.blocks/b.blocks),0)
SELECT u.name OWNER,
o.name OBJECT, f.name TABLESPACE, so.object_type TYPE, so.object_id OBJ#, (s.blocks*f.blocksize)/(1024*1024) OBJMBYTES, s.extents EXTENTS, s.iniexts INIEXTS, s.minexts MINEXTS, s.maxexts MAXEXTS, s.extsize NEXTEXTSIZE, (s.extsize*f.blocksize)/(1024*1024) NEXTEXTMBYTES, s.extpct EXTPCT, decode (s.maxexts-s.extents, 0, 'Max Extents Reached', decode(least(s.extsize,f.totfreeblocks)-s.extsize, 0, 'FragmentedFree Space', 'Insufficient Free Space')) REASON FROM sys.seg$ s, space_bound_objects f, sys.sys_objects so,
sys.obj$ o, sys.user$ u
WHERE (s.extsize > f.maxfreeblocks or (s.extents >= s.maxexts and
s.maxexts != 0) ) and
s.ts# = f.ts# and (s.file#=so.header_file and s.block# = so.header_block and s.type# = so.segment_type_id) and so.object_id = o.obj# and o.owner# = u.user#
HTH Mark
-----Original Message-----
nlzanen1_at_EY.NL
Sent: Tuesday, June 26, 2001 03:31
To: Multiple recipients of list ORACLE-L
Hi All,
I thought I had a script to check for space bound objects (can not allocate next extent for whatever reason) but seem to have misplaced it.
Anybody want to save me the time?
TIA Jack
Indien bovenstaand e-mailbericht niet aan u is gericht, verzoeken wij u vriendelijk doch dringend het e-mailbericht te retourneren aan de verzender en het origineel en eventuele kopieën te verwijderen en te vernietigen.
Ernst & Young hanteert bij de uitoefening van haar werkzaamheden algemene voorwaarden, waarin een beperking van aansprakelijkheid is opgenomen. De algemene voorwaarden worden u op verzoek kosteloos toegezonden.
If you are not the intended recipient of this communication please return the communication to the sender and delete and destroy all copies.
In carrying out its engagements, Ernst & Young applies general terms and conditions, which contain a clause that limits its liability. A copy of these terms and conditions is available on request free of charge.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
INET: nlzanen1_at_EY.NL
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Mark Leith
INET: mark_at_cool-tools.co.uk
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Tue Jun 26 2001 - 12:16:54 CDT
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message