Found an interesting section in my SQL Server 2005 70-431 book.
A single corrupt database page can cause the entire database to go offline. You can restore an individual corrupt page by restoring the page from the last full backup using the following syntax:-
My question is, can anybody explain to me the '1:88'?
If I have a corrupt page, how do I specify it using this
'n:nn' syntax?
Dazed and confused
A single corrupt database page can cause the entire database to go offline. You can restore an individual corrupt page by restoring the page from the last full backup using the following syntax:-
Code:
RESTORE DATABASE MyDb PAGE = '1:88'
FROM DISK = ‘C:\MyBack.bak’
WITH NORECOVERY
My question is, can anybody explain to me the '1:88'?
If I have a corrupt page, how do I specify it using this
'n:nn' syntax?
Dazed and confused