Microsoft KB Archive/281617

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 17:29, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


FIX: SQLMAINT Backup to Tape with Verify Only Checks the First File

Article ID: 281617

Article Last Modified on 3/14/2006



APPLIES TO

  • Microsoft SQL Server 7.0 Standard Edition
  • Microsoft SQL Server 2000 Standard Edition



This article was previously published under Q281617

BUG #: 57537 (SQLBUG_70)
BUG #: 351090 (SHILOH)

SYMPTOMS

Using the verify option for either database or transaction log backups to tapes in the sqlmaint utility causes sqlmaint to generate a RESTORE VERIFYONLY ... WITH FILE=1 statement when running the job. On a tape device, you can have several files on the same tape; the file to verify may not be the first one.

For example, for a database backup job, you can use SQL Server Profiler to trace server activity and see the following statements:

...
BACKUP DATABASE [pubs] TO  TAPE = N'\\.\tape0' WITH  NOINIT ,  NOUNLOAD ,  NOSKIP ,  STATS = 10,  NOFORMAT 
....
RESTORE VERIFYONLY FROM  TAPE = N'\\.\Tape0' WITH  FILE = 1 ,  NOUNLOAD 
....
                

Even if there are existing files on the tape, sqlmaint always checks the first file of the tape, due to the inherent FILE=1 option. Because you can have many files on the same tape, SQL Server will probably verify a file that has nothing to do with the file that you want to verify. Consequently, database administrators might think that their backup has been verified, when indeed it has not.

STATUS

Microsoft has confirmed this to be a problem in SQL Server 7.0. This problem has been corrected in U.S. Service Pack 3 for Microsoft SQL Server 7.0. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

274799 INF: How to Obtain Service Pack 3 for Microsoft SQL Server 7.0 and Microsoft Data Engine (MSDE) 1.0


For more information, contact your primary support provider.

Microsoft has confirmed this to be a problem in SQL Server 2000.

Keywords: kbbug kbfix KB281617