Scenario: In a DB2 V8.1 logically partitioned database (4 partitions) on Windows.
The count of the table is as follows:
D:\>db2 "select count(*) from admin.state with ur"
1
-----------
1450000
1 record(s) selected.
D:\>
However, the card from syscat.tables is as follows:
D:\>db2 "select substr(tabname, 1, 30), substr(tabschema,1,30), card, npages, fpages from syscat.tables where tabname like 'STATE%' with ur"
1 2 CARD NPAGES FPAGES
------------------------------ ------------------------------ -------------------- ----------- -----------
STATE ADMIN 40 8 8
STATEMENTS SYSCAT -1 -1 -1
2 record(s) selected.
D:\>
The db2nodes.cfg contents is as found below:
0 pcidl PCIDL 0
1 pcidl PCIDL 1
2 pcidl PCIDL 2
3 pcidl PCIDL 3
How do 1450000 & 40 relate? Why do they not match? Am I missing something in a partitioned database environment?
Thanks in advance.