Forum Replies Created

Viewing 3 posts - 16 through 18 (of 18 total)

  • RE: Repair after sp1 question

    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 🙂

  • RE: How to find backup frequency

    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]...

  • RE: PageIOLatch_SH

    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...

Viewing 3 posts - 16 through 18 (of 18 total)