Viewing 3 posts - 16 through 18 (of 18 total)
Hi Richard,
by repair I'm assuming you mean you are rebuilding your system databases? If so, yes, you need to re-apply the service pack.
HTH 🙂
August 19, 2009 at 5:45 am
#1041415
Hi guys,
backup history is stored in msdb in a set of tables. You can query them with this:
select A.database_name, A.backup_start_date, A.backup_finish_date,
datediff(ss, A.backup_start_date, A.backup_finish_date) as 'Duration',
(case A.[type]...
August 19, 2009 at 5:21 am
#1041403
Hi Usman,
another cause of this could be out of date statistics or badly fragmented indexes. Do you regularly perform maintenance on these databases?
There are various built-in functions in SQL Server...
August 19, 2009 at 4:04 am
#1041367