I have a table that is separated into filegourps by quarter and partitioned by quarter using insertion date.
I want to run some tests on this table and the partitions so I need a way to query a specific partition. ie
select * from table1.partition1 where dateinserted = getdate()
(just an example)
I want to run some tests on this table and the partitions so I need a way to query a specific partition. ie
select * from table1.partition1 where dateinserted = getdate()
(just an example)