> What could be the reason? One thing that crossed my mind is that recent
> rows
> might have larger xml data. How can we verify that?
One method to check the actual xml column space usage by partition:
SELECT
$PARTITION.PF_PartitionFunction(PartitionKey).
SUM(CAST(DATALENGTH(xml_column) AS bigint)) AS xml_column_length,
COUNT_BIG(*) AS row_count
FROM dbo.MyPartitionedTable
GROUP BY
$PARTITION.PF_PartitionFunction(PartitionKey)
If you don't want to scan the entire table, you can instead specify a range
sampling of the desired partition in the WHERE clause and run the query
multiple times.

Signature
Hope this helps.
Dan Guzman
SQL Server MVP
http://weblogs.sqlteam.com/dang/
> Hi,
>
[quoted text clipped - 12 lines]
> Thanks,
> Pedja
Pedja - 30 Aug 2008 02:37 GMT
Thanks
> > What could be the reason? One thing that crossed my mind is that recent
> > rows
[quoted text clipped - 30 lines]
> > Thanks,
> > Pedja