IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

JCL utility by which i can find the percentage of space used


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
jagankallis
Warnings : 1

New User


Joined: 28 Jun 2006
Posts: 29
Location: DUISBURG

PostPosted: Fri Sep 08, 2006 4:21 am
Reply with quote

Hi Friends,

I am currently working in a UAT environment of 50+ tables. Each day i load in more data.
% of free space in the tablespace is needed to b e known for each table.
Is there a JCL utility by which i can find the percentage of space used and % of space free in each table.

Please give your valuable suggestion.

Thanks a lot in advance for your co-operation
Back to top
View user's profile Send private message
mkarmegam

New User


Joined: 28 May 2006
Posts: 13
Location: USA

PostPosted: Mon Oct 09, 2006 9:56 pm
Reply with quote

Are you talking about free allocated space?
Thanks
Murugesh
Back to top
View user's profile Send private message
mkarmegam

New User


Joined: 28 May 2006
Posts: 13
Location: USA

PostPosted: Tue Oct 10, 2006 1:11 am
Reply with quote

If you can run a catalog query, then the following query should give idea about freespace:


SELECT (NACTIVE*4) AS USED_SPACE , SPACE AS ALLOCATED_SPACE,
(SPACE - (NACTIVE *4)) AS FREESPACE
FROM SYSIBM.SYSTABLESPACE;
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts To find whether record count are true... DFSORT/ICETOOL 6
No new posts REASON 00D70014 in load utility DB2 6
No new posts Find the size of a PS file before rea... COBOL Programming 13
No new posts ISRSUPC search utility - using high l... TSO/ISPF 2
Search our Forums:

Back to Top