News

When managing SQL Server, partitioning is a strategy that can have significant impacts on your maintenance tasks. Partitioning involves dividing a database into parts or sections, which can be ...
Database partitioning is a technique used to manage and optimize the performance of a SQL Server by dividing large tables into smaller, more manageable pieces called partitions. It allows you to ...
declare cur_table_list cursor for select s.table,s.column,s.granularity,s.increment,s.retain,s.buffer from partition_manager_settings s; set partition_list:=concat ...
1. Verifies the correct number of partitions exist in the tail as defined by @days_to_keep_data 2. Verifies the partitons have no gaps in the tail (partitions older than the current partition), each ...