Sys.partitionsをクエリすると、テーブルのおおよその行数が返されます。
これは、実際のコンテンツ(空のパーティションであっても)に関係なく、すべてのパーティションに対して同じ行数を返すことに気付きました。
テーブルにはクラスター化列ストアインデックスがあり、統計はほとんどすべての列で作成されています。統計は、各データの読み込み後に毎日更新されます。テーブルは日付で分割されています。
sys.partitionsクエリ:
SELECT convert(date, convert(varchar,rv.[value])) as partitionDate, p.rows as syspartitions_RowCount
FROM sys.tables t
join sys.schemas sc on sc.schema_id = t.schema_id
JOIN sys.partitions p ON p.[object_id] = t.[object_id]
JOIN sys.indexes i ON i.[object_id] = p.[object_id]
AND i.[index_id] = p.[index_id]
JOIN sys.data_spaces ds ON ds.[data_space_id] = i.[data_space_id]
LEFT JOIN sys.partition_schemes ps ON ps.[data_space_id] = ds.[data_space_id]
LEFT JOIN sys.partition_functions pf ON pf.[function_id] = ps.[function_id]
LEFT JOIN sys.partition_range_values rv ON rv.[function_id] = pf.[function_id]
AND rv.[boundary_id]+1 = p.[partition_number]
WHERE p.[index_id] <=1
and t.[name] ='tbl'
and sc.name = 'temp'
and convert(date, convert(varchar,rv.[value])) > '2016-05-31'
order by convert(date, convert(varchar,rv.[value])),
t.[name]
テーブルクエリ:
select date, count_big(*) as real_count
from temp.tbl
where date > '2016-05-31'
group by date
order by date
両方のクエリからのサンプル結果:
次のように、_sys.dm_db_partition_stats
_の代わりに _sys.partitions
_ を使用してみてください。
_SELECT ObjectName = QUOTENAME(sc.name) + '.' + QUOTENAME(t.name)
, RangeValue = rv.value
, sys_partitions_RowCount = p.rows
, sys_dm_db_partition_stats_row_count = ddps.row_count
FROM sys.tables t
INNER JOIN sys.schemas sc ON t.schema_id = sc.schema_id
INNER JOIN sys.partitions p ON t.object_id = p.object_id
INNER JOIN sys.indexes i ON t.object_id = i.object_id
AND p.index_id = i.index_id
INNER JOIN sys.data_spaces ds ON ds.data_space_id = i.data_space_id
INNER JOIN sys.partition_schemes ps ON ps.data_space_id = ds.data_space_id
INNER JOIN sys.partition_functions pf ON pf.function_id = ps.function_id
INNER JOIN sys.partition_range_values rv ON rv.function_id = pf.function_id
AND (rv.boundary_id + 1) = p.partition_number
INNER JOIN sys.dm_db_partition_stats ddps ON t.object_id = ddps.object_id
AND p.partition_id = ddps.partition_id
WHERE p.index_id <= 1
and t.name ='tbl'
and sc.name = 'temp'
ORDER BY sc.name
, t.name
, rv.value;
_
Azure SQL Data Warehouseの場合、同じ詳細が含まれていても、_sys.dm_pdw_nodes_db_partition_stats
_ではなく_sys.dm_db_partition_stats
_を使用する必要があります。
注:CONVERT(date,...)
機能を削除したので、このコードは日付範囲の値を持つスキーマだけでなく、すべてのパーティションスキーマと互換性があります。
オンプレミスバージョンのSQL Serverでは、_sys.partitions
_がNULLの場合、_sys.sysrowsets
_は内部テーブルALUCOUNT
または_ALUCOUNT.rows
_から行カウントを取得します。 _sys.partitions
_の定義は次のとおりです。
_CREATE VIEW sys.partitions AS
SELECT rs.rowsetid AS partition_id
, rs.idmajor AS object_id
, rs.idminor AS index_id
, rs.numpart AS partition_number
, rs.rowsetid AS hobt_id
, isnull(ct.rows, rs.rcrows) AS rows
, rs.fgidfs AS filestream_filegroup_id
, cmprlevel AS data_compression
, cl.name AS data_compression_desc
FROM sys.sysrowsets rs OUTER APPLY OpenRowset(TABLE ALUCOUNT, rs.rowsetid, 0, 0) ct
LEFT JOIN sys.syspalvalues cl ON cl.class = 'CMPL' AND cl.value = cmprlevel
_
オンプレミスバージョンの_sys.dm_db_partition_stats
_は、内部テーブルPARTITIONCOUNTS
から行カウントを取得します。
_CREATE VIEW sys.dm_db_partition_stats AS
SELECT c.partition_id
, i.object_id
, i.index_id
, c.partition_number
, c.in_row_data_page_count
, c.in_row_used_page_count
, c.in_row_reserved_page_count
, c.lob_used_page_count
, c.lob_reserved_page_count
, c.row_overflow_used_page_count
, c.row_overflow_reserved_page_count
, c.used_page_count
, c.reserved_page_count
, c.row_count
FROM sys.indexes$ i
CROSS APPLY OpenRowSet(TABLE PARTITIONCOUNTS, i.object_id, i.index_id, i.rowset) c
_
_sys.partitions
_と_sys.dm_db_partition_stats
_shouldは両方とも正しい行数を持っていますが、PARTITIONCOUNTS
内部テーブル。
私は同じ問題を抱えていて、この宝石に出くわしました。
この記事で見つかりました: https://www.red-gate.com/simple-talk/sql/bi/Azure-sql-data-warehouse-explaining-architecture-system-views/
SELECT pnp.partition_number,t.name,nps.[row_count],nps.[used_page_count]*8.0/1024 as usedSpaceMB,nt.distribution_id
FROM
sys.tables t
INNER JOIN sys.indexes i
ON t.[object_id] = i.[object_id]
AND i.[index_id] <= 1 /* HEAP = 0, CLUSTERED or CLUSTERED_COLUMNSTORE =1 */
INNER JOIN sys.pdw_table_mappings tm
ON t.[object_id] = tm.[object_id]
INNER JOIN sys.pdw_nodes_tables nt
ON tm.[physical_name] = nt.[name]
INNER JOIN sys.pdw_nodes_partitions pnp
ON nt.[object_id]=pnp.[object_id]
AND nt.[pdw_node_id]=pnp.[pdw_node_id]
AND nt.[distribution_id] = pnp.[distribution_id]
INNER JOIN sys.dm_pdw_nodes_db_partition_stats nps
ON nt.[object_id] = nps.[object_id]
AND nt.[pdw_node_id] = nps.[pdw_node_id]
AND nt.[distribution_id] = nps.[distribution_id]
AND pnp.[partition_id]=nps.[partition_id]
WHERE t.name='FactProductInventory'
ORDER BY usedSpaceMB DESC;
この問題を解決するには、古いsybaseフローティングビューsysindexesを使用してください(IDは新しいシステムビューのobject_idと一致します)。常に正しい行数を返します。