bonjour,

lors de la restauration j'ai eu le message d'erreur suivant:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
Msg 3159, Level 16, State 1, Line 1
The tail of the log for the database "ARSystem" has not been backed up. Use BACKUP LOG WITH NORECOVERY to backup the log if it contains work you do not want to lose. Use the WITH REPLACE or WITH STOPAT clause of the RESTORE statement to just overwrite the contents of the log.
Msg 3013, Level 16, State 1, Line 1
RESTORE DATABASE is terminating abnormally.
Msg 3117, Level 16, State 1, Line 2
The log or differential backup cannot be restored because no files are ready to rollforward.
Msg 3013, Level 16, State 1, Line 2
RESTORE LOG is terminating abnormally.
ci-dessous les requêtes de la restauration:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
use master
go
RESTORE DATABASE ADA  
FROM DISK = N'S:\SQL_Backup\BackupFull.02102013.bak'  
WITH NORECOVERY
GO  
 
RESTORE LOG ADA  
FROM DISK = N'S:\SQL_Backup\BackupFull_Log.02102013.trn'  
WITH NORECOVERY
GO
auriez vous une idée...?
merci