list of partitioned table in SQL Server

select distinct t.name
from sys.partitions p
inner join sys.tables t
on p.object_id = t.object_id
where p.partition_number <> 1


Key Words : SQL Server 2012

Comments

Popular posts from this blog

c# Json Pretiffy

List of column in SQL Server Tables