Hi All, The db maintenance routine fails every night after varying times due to using all available space on the db cluster node (shared) tlog.
So I have started to work through the db maintenance stored procs but basically i need to run them all individually to ensure that we dont run out of tlog space on that volume.
I have run these already - all fine.
exec
dbo.dbm_SyslogMessages_DeleteStale
'2011-12-04 11:47:01.403'
exec
dbo.dbm_TrapMessages_DeleteStale
'2011-12-04 11:47:01.403'
exec
dbo.dbm_Events_DeleteStale
'2011-10-04 11:47:01.403'
Now I need to run the rollup tables procs, is there a master SP that i am missing? As this is a one off run to clear out potentially 10 months + of data, I would like to be able to set a manual @date value for each set of SPs to use, but the rollup ones use a passthrough value which I need help with the running order and script... Main ones are:
-- dbo.dbm_ResponseTime_DetailToHourly
-- dbo.dbm_ResponseTime_HourlyToDaily
-- dbo.dbm_ResponseTime_DeleteStale
-- dbo.dbm_ResponseTime_DeleteOrphans
and
-- dbo.dbm_CPULoad_DetailToHourly
-- dbo.dbm_CPULoad_HourlyToDaily
-- dbo.dbm_CPULoad_DeleteStale
-- dbo.dbm_CPULoad_DeleteOrphans
-- dbo.dbm_CustomPollerStatistics_DetailToHourly
-- dbo.dbm_CustomPollerStatistics_HourlyToDaily
-- dbo.dbm_CustomPollerStatistics_DeleteStale
-- dbo.dbm_CustomPollerStatistics_DeleteOrphans
but I will need to run nearly of the sets of procs in turn. it currently gets around the NPM_Wireless table section before it fails.
Thanks
M