PRB: SQL Admin Cannot Display History for Scheduled Dumps

Last reviewed: April 29, 1997
Article ID: Q114662

The information in this article applies to:

  - Microsoft SQL Server, version 4.2

SYMPTOMS

Viewing the history of database dumps using SQL Administrator can hang if too many rows are found. The only way to recover is by ending the task through the Task Manager.

WORKAROUND

Remove old entries from the table by issuing the following command:

   delete
   from master..MSscheduled_backups_log
   where Actual_start_time < '05/09/94'

The command will remove any backup history from before May 9, 1994.

MORE INFORMATION

Using SQL Administrator, you can monitor scheduled backups by selecting the options Manage-Backup\Restore-Scheduled Backups and Manage-History.

If too many rows are returned, SQL Administrator will not be able to display the result, and becomes unavailable for other transactions. On Windows NT, you can use the Task Manager and click End Task to end the infinite task.


Additional query words: windows nt
Keywords : kbtool SSrvAdmin
Version : 4.2 4.21
Platform : WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 29, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.