|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Tuesday, May 14, 2013 1:23 PM
Points: 1,905,
Visits: 1,601
|
|
You must be corrupting a page that is not allocated - you need to figure out which page you're corrupting and then check it's allocation status using DBCC PAGE.
For the backup, if you corrupt the backup header then restore verifyonly will catch that, with or without checksum.
Paul Randal CEO, SQLskills.com: Check out SQLskills online training! Blog:www.SQLskills.com/blogs/paul Twitter: @PaulRandal SQL MVP, Microsoft RD, Contributing Editor of TechNet Magazine Author of DBCC CHECKDB/repair (and other Storage Engine) code of SQL Server 2005
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, February 13, 2013 7:41 AM
Points: 1,
Visits: 56
|
|
Newbee ; Paul this is a very good article but one common trend here is educating the masses that require these backups . Would it be possible to providfe me with names of vitualisation tools which will aid in validating backs as well as restores.
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Monday, April 15, 2013 11:42 PM
Points: 424,
Visits: 55
|
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 1:54 PM
Points: 54,
Visits: 615
|
|
I've developed a stored procedure to automate the generation of restore scripts. http://paul.dynalias.com/SQL/_layouts/15/start.aspx#/ The procedure is actually a single SQL query, you can specify a STOPAT point and it works out the FULL, DIFF, LOG files needed and generates the necessary script. It includes a CHECKDB at the end, ignores WITH COPY_ONLY , allows overrides to restore file locations using WITH MOVE and so on. It's better than anything else available free I can find.
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 1:54 PM
Points: 54,
Visits: 615
|
|
http://paul.dynalias.com/SQL/SiteAssets/Lists/Posts/AllPosts/sp_RestoreScriptGenie.txt
My Christmas present to the world.
|
|
|
|