Now you’re less likely to miss what’s been brewing in our knowledge base with this weekly digest
Partitioning for version 10 and newer is based on splitting the monitor.PerfSampleMed, monitor.PerfSampleDay, monitor.PerfSampleLow tables into numbered items joined into views.
When the partitioning is applied, the "monitor.PerfSampleMed" table is replaced with a database view "monitor.PerfSampleMed" which contains a set of the numbered tables:
monitor.PerfSampleMed0
monitor.PerfSampleMed1
monitor.PerfSampleMed2
...
monitor.PerfSampleMed7
monitor.PerfSampleMed8
Tables "monitor.PerfSampleDay" and "monitor.PerfSampleLow" are split equally, but with a different number of items.
To apply the database partitioning to Veeam ONE version 10 (or newer), do the following:
EXEC monitor.sp_convert_perf_table 'PerfSampleMed', 604800, 86400 DECLARE @RetentionPolicyPeriod_Sec bigint = (select top 1 coalesce(RetentionPolicyPeriod,12) from common.ServerSettings)*2629746 EXEC monitor.sp_convert_perf_table 'PerfSampleDay', @RetentionPolicyPeriod_Sec, 2678400 EXEC monitor.sp_convert_perf_table 'PerfSampleLow', @RetentionPolicyPeriod_Sec, 2678400
The process will take some time depending on the database size. You can see the progress of applying the partitioning in the SQL Studio "Messages" panel.
When the process is complete, all three tables will be partitioned and ready to use.
Your feedback has been received and will be reviewed.
Please try again later.
This form is only for KB Feedback/Suggestions, if you need help with the software open a support case
Your feedback has been received and will be reviewed.