Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
how to identify the records in a particular partition

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
Nagendran

Active User


Joined: 24 Jan 2007
Posts: 82
Location: Trivandrum

PostPosted: Thu Jun 26, 2008 11:45 am    Post subject: how to identify the records in a particular partition
Reply with quote

Hi,

We are having a DB2 table with 64 partitions, i want to know the number of records in each partition, could any body help me how to write a
query to identify the number of records in each partition?


thanks,
Nagendran.R
Back to top
View user's profile Send private message
References
plkanth_526

New User


Joined: 01 Jun 2008
Posts: 7
Location: Bangalore

PostPosted: Thu Jun 26, 2008 2:18 pm    Post subject: Reply to: how to identify the records in a particular partit
Reply with quote

You can get the information from RTS tables.Please use the below query to get the number of rows present partition wise.

SELECT TOTALROWS
FROM "SYSIBM".TABLESPACESTATS
WHERE
DBNAME = 'xxxx'
NAME = 'xxxx '
PARTITION = xx with ur;
Back to top
View user's profile Send private message
am_ne

New User


Joined: 24 Mar 2007
Posts: 25
Location: Bangalore

PostPosted: Mon Jun 30, 2008 6:17 pm    Post subject:
Reply with quote

Hi,

If RTS tables are not enabled then you have to know the partitioning logic.

The partitioning logic of the table based on values of one/multiple column.
Once you know the partitioning column name and the maximum values for your partitions, you can write the query easily.

Thanks,
Amit
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1