Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Point in Time Recovery

Author  Topic 

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-12 : 22:14:34
I have a problem at a particular transaction log which generates every 15 minutes during the business hours.

The user suspected at 11 AM there was wrong data and thankfully we have been generating the Transaction Logs thereafter also.

I have taken the Overnight Full Backup and log backups which starts at 6 AM onwards till 11 AM ( (Every 15 Minutes)

On a development box I have restored with overnight backup (Full Backup)


RESTORE DATABASE RING_EAST
FROM DISK = 'R:\\BACKUP\RING_EAST_backup_201009122329.bak'
WITH REPLACE, NORECOVERY

Then it went into Restoring mode and I have issued this statement


RESTORE DATABASE RING_EAST WITH RECOVERY
Then the database has to accessibility.

Now I do have the Transaction Logs from 6 AM till 11 AM

When I tried to restore the Logs then:



RESTORE LOG RING_EAST
FROM DISK = 'R:\BACKUP\RING_EAST_backup_201009130600.trn'
WITH NORECOVERY, STOPAT = 'SEP 13, 2010 11:00 AM',
FILE = 1



ERROR:

Msg 3117, Level 16, State 1, Line 1
The log or differential backup cannot be restored because no files are ready to rollforward.
Msg 3013, Level 16, State 1, Line 1
RESTORE LOG is terminating abnormally.


I believe I went wrong at these steps:


You might be asking what was happened between Midnight Full Backup to the 6 AM First ever Transaction log, then I would say what ever has happened inbetween Full Backup to 6 AM Transaction Log Backup then 6 AM backup did procured all these changes.


Now, when I tried to restore the first of log (6AM) and syntax goes and stopat 11 AM and got the above ERROR.

Can anyone diagnose this situation and let me know as to how I need to get restore done till 11 AM with all my Full Backups and using transaction Logs from 6 AM till 11 AM.

Thanks all.

jeffw8713
Aged Yak Warrior

819 Posts

Posted - 2010-09-12 : 22:54:07
Once you RECOVER a database and bring it online, you cannot restore any addtional files - such as transaction log backups or differential backups.

As soon as you issued the following:

RESTORE DATABASE RING_EAST WITH RECOVERY

The database was brought only and recovered. At this point, you have told SQL Server you are completed with the restores and will not be restoring any additional files.

Restart the process over, restoring the full backup again with NORECOVERY. Then, start restoring each transaction log you need, up until you reach the point in time (again, use the NORECOVERY option). Once you are satisfied that the database has been restored to the correct point in time, then you can issue the above command the recover the database and bring it online.

You can specifiy the STOP AT option for each log restore also, that way you don't have to worry about going past the point in time you want to recover to.

Jeff
Go to Top of Page

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-13 : 00:08:41
Thanks Jeff but still this is the situation

I have issued like this:

Restoring the Database with NORECOVERY

RESTORE DATABASE RING_EAST
FROM DISK = 'R:\\BACKUP\RING_EAST_backup_201009122329.bak'
WITH REPLACE, NORECOVERY


OUTPUT:
Processed 302576 pages for database 'RING_EAST', file 'RING_EAST' on file 1.
Processed 1 pages for database 'RING_EAST', file 'RING_EAST_log' on file 1.
RESTORE DATABASE successfully processed 302577 pages in 192.488 seconds (12.877 MB/sec).


But Still the Database is in RESTORING Status..........

Then I forced to execute for Log Restore...

RESTORE LOG RING_EAST
FROM DISK = 'R:\BACKUP\RING_EAST_backup_201009130600.trn'
WITH NORECOVERY, STOPAT = 'SEP 13, 2010 11:00 AM',
FILE = 1


ERROR:

Msg 4305, Level 16, State 1, Line 1
The log in this backup set begins at LSN 17427000004403100001, which is too recent to apply to the database. An earlier log backup that includes LSN 17427000004402600001 can be restored.
Msg 3013, Level 16, State 1, Line 1
RESTORE LOG is terminating abnormally.


Any solution where I have gone wrong..Thanks.
Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2010-09-13 : 01:40:58
You're missing at least one log backup. You need to restore, in sequence, all the log backups taken between the full backup and the time you want to restore to. The error is telling you that the log backup you're trying to restore contains log records too recent for the current state of the DB.

--
Gail Shaw
SQL Server MVP
Go to Top of Page

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-13 : 17:58:28
I knew that there is one log backup between Full Backup and 6 AM backup, BUT,

I have mentioned above as there were transactions between FULL BACKUP and 6 AM backup would be recorded into 6AM Transaction Log backup;

Assuming the above terminology, I have continuous backup sequence and the moment I have restored full backup with NORECOVERY and I have started with 6 AM Transaction Log but it complains still the missing gap between LSN 17427000004402600001 --> LSN 17427000004403100001

I dont have the 'FILLUP' Log backup in between FULL Backup and 6 AM Log Backup.

Any idea how to get through. Many Thanks.
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-09-13 : 18:18:03
If you don't have the "FILLUP" log backup between the full and 6am log backup, then you can NOT restore to 11am. It just isn't possible. You can't skip ANY transaction logs, even if there wasn't a single transaction running.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-13 : 21:23:28
Exactly Tara, you just caught my mind.


Just Clarify with my thought.......

Now in order to get it those transaction LSN's we need to run all the TRANSACTION LOG BACKUPS even after 9:30 PM (We start Transaction log backups between 6 AM till 9:30 PM everyday; then gap upto 10:30 PM; thereafter starts with Full Backup goes upto 12 AM and only starts 6 AM Transaction Log Backups - CYCLIC.

Which means need to run the transaction Log backups round the clock to get all the LSN's in chronological order.

Or just give me the scenario.

Thanks
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2010-09-14 : 03:45:08
provided you have not truncated your Transaction log, and not deleted any backup files, you DO have the necessary data / files.

You need

FULL BACKUP
Optional DIFFERENTIAL BACKUP based on that Full Backup
ALL Tlog backups after that (you don't need the "one before" the Full/Diff backup)

See http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=54300#273265 for a query that will show you exactly which backup files were made, then you will know which ones you need to find on the disk
Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2010-09-14 : 04:23:33
You don't need to run log backups around the clock. You just need all the ones you did run (and for there to not have been a log truncation)

One thing to note. Transaction log do not contain log records since the full backup. They contain log records since the last log backup. So if you have this:
21:30 log backup
22h30 full backup
06h00 log backup

The 6am log backup contains log records back to 21h30, not 22h30

--
Gail Shaw
SQL Server MVP
Go to Top of Page

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-15 : 23:34:54
Sorry for late reply.

As you say, I have my last Log Backup at 21:30 PM;

Followed by full Backup at 22:30 Pm finished by 12 AM;

My next day first Log Backup at 6 AM


Now taking the information I picked up the last FULL BACKUP at 12 AM and restored to NO RECOVERY and then tries to apply Log Backup at 6 AM -


Then it complains the LSN mismatchas

missing gap between LSN 17427000004402600001 --> LSN 17427000004403100001


Then I am unable to understand where I am going wrong

Sorry to bother the THINKERS but let me get the point.

Thanks
Go to Top of Page

Yeoh Ray Mond
Starting Member

49 Posts

Posted - 2010-09-15 : 23:53:13
I would suggest looking at the backup history tables to check if there were any transaction log backups made between 12 am and 6 am e.g.

SELECT * FROM msdb..backupset WHERE type = 'L' AND database_name = '<your database name>' AND backup_start_date > ... AND backup_start_date < ...



Ray Mond
SQLBackupRestore.com - your quick guide to SQL Server backup and recovery issues
SQL Image Viewer - retrieve, view, convert and export images and binary data from SQL Server, Oracle, DB2, PostgreSQL, SQLite, and Firebird databases.
SQL Data Sets - share and distribute SQL Server, Oracle and PostgreSQL data sets securely and easily
Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2010-09-16 : 03:32:05
Check for other log backup jobs. There was a log backup run between the full backup and the 6am log backup. Also check the SQL error log for log backup entries.

--
Gail Shaw
SQL Server MVP
Go to Top of Page

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-16 : 20:45:52
quote:
Check for other log backup jobs. There was a log backup run between the full backup and the 6am log backup. Also check the SQL error log for log backup entries.



Absolutely, this is correct. I have checked into my respective servers ERRORLOG files and I have found there is a written evidence of FULL LOG BACKUP has been procured between

FULL BACKUP and 6 AM

for all the databases BUT, it was not stored as a backup file

Which I believe is the missing link as far as LSN matching sequential numbers in the order --> LSN 17427000004402600001 --> LSN 17427000004403100001.


You don't need to run log backups around the clock. You just need all the ones you did run (and for there to not have been a log truncation)

quote:
One thing to note. Transaction log do not contain log records since the full backup. They contain log records since the last log backup. So if you have this:


As Mentioned above by Gail Shaw, True to the sense, we dont even generate the Log backups round the clock and reason for that we do have FULL backup after the 9:30 PM Log backup and Full Backup then we dont have any log backups in between but only starts the following morning with 6 AM Log Backup as day's launching backup.

Bottomline - I do see there is a Full Log Backup Entry in the ERRORLOG file but not showing in my file system drives.

Any help will be an eye opener. Thanks All.

Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2010-09-17 : 01:27:27
Did you run the query I suggested to see what Backups were run?
Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2010-09-17 : 04:28:43
The extra full backup will be irrelevent. Full backups DO NOT truncate the transaction log.

Can you post the extract of the error log from the 21h30 log backup up until the 06h00 log backup please?

--
Gail Shaw
SQL Server MVP
Go to Top of Page

pdset
Constraint Violating Yak Guru

310 Posts

Posted - 2010-09-21 : 00:24:36
quote:
would suggest looking at the backup history tables to check if there were any transaction log backups made between 12 am and 6 am e.g.


SELECT * FROM msdb..backupset WHERE type = 'L' AND database_name = '<your database name>' AND backup_start_date > ... AND backup_start_date < ...


No Rows did returned.


quote:
The extra full backup will be irrelevent. Full backups DO NOT truncate the transaction log.

Can you post the extract of the error log from the 21h30 log backup up until the 06h00 log backup please?



This is the Output:

2010-09-20 21:34:49.46 Server The time stamp counter of CPU on scheduler id 3 is not synchronized with other CPUs.
2010-09-20 21:58:49.47 Server The time stamp counter of CPU on scheduler id 1 is not synchronized with other CPUs.
2010-09-20 22:06:49.47 Server The time stamp counter of CPU on scheduler id 2 is not synchronized with other CPUs.
2010-09-20 22:30:14.23 spid53 Configuration option 'user options' changed from 0 to 0. Run the RECONFIGURE statement to install.
2010-09-20 22:30:15.48 spid55 DBCC CHECKDB (master) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 1 seconds.
2010-09-20 22:30:16.73 spid55 DBCC CHECKDB (mssqlsystemresource) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 0 seconds.
2010-09-20 22:30:17.84 spid55 DBCC CHECKDB (model) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 1 seconds.
2010-09-20 22:30:34.23 Backup Database backed up. Database: master, creation date(time): 2010/08/30(09:43:15), pages dumped: 464, first LSN: 6661:560:37, last LSN: 6661:584:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'95b683cf-fdd2-4f8b-bbd7-6a56cc5b3531'}). This is an informational message only. No user action is required.
2010-09-20 22:30:37.36 Backup Database backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 256, first LSN: 242:288:37, last LSN: 242:312:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'2b82492e-1bfa-42d3-9041-a486ff96c4b5'}). This is an informational message only. No user action is required.
2010-09-20 22:31:20.89 spid55 DBCC CHECKDB (msdb) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 2 seconds.
2010-09-20 22:36:29.48 spid55 DBCC CHECKDB (TDS) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 5 minutes 7 seconds.
2010-09-20 22:37:54.73 spid55 DBCC CHECKDB (GUNBURY) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 23 seconds.
2010-09-20 22:37:56.92 spid55 DBCC CHECKDB (ASGNTS) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 1 seconds.
2010-09-20 22:39:05.92 spid55 DBCC CHECKDB (CAIRNSGALE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 8 seconds.
2010-09-20 22:40:15.83 spid55 DBCC CHECKDB (TASS_BOAST) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 8 seconds.
2010-09-20 22:41:02.39 spid55 DBCC CHECKDB (TELLARINE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 45 seconds.
2010-09-20 22:42:00.36 spid55 DBCC CHECKDB (CENTRAL_NOLAND) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 57 seconds.
2010-09-20 22:42:49.49 Server The time stamp counter of CPU on scheduler id 3 is not synchronized with other CPUs.
2010-09-20 22:42:51.91 spid55 DBCC CHECKDB (COLOC) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 50 seconds.
2010-09-20 22:44:28.05 spid55 DBCC CHECKDB (FROGBUD) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 35 seconds.
2010-09-20 22:44:52.78 spid52 DBCC CHECKDB (EVELESFORD) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 23 seconds.
2010-09-20 22:45:01.19 spid52 DBCC CHECKDB (RAMBOOLA) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 7 seconds.
2010-09-20 22:46:15.32 spid52 DBCC CHECKDB (YEAST_RESERVER) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 13 seconds.
2010-09-20 22:46:24.14 spid52 DBCC CHECKDB (YEAST_TIMMERE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 7 seconds.
2010-09-20 22:47:01.16 spid52 DBCC CHECKDB (GALLEE_BRACK) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 36 seconds.
2010-09-20 22:49:19.74 Backup Database backed up. Database: msdb, creation date(time): 2005/10/14(01:54:05), pages dumped: 476376, first LSN: 24257:6792:172, last LSN: 24257:6928:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'522d02e0-6f57-4a08-ae14-c6d27f2f9d58'}). This is an informational message only. No user action is required.
2010-09-20 22:49:24.02 Backup Database backed up. Database: ASGNTS, creation date(time): 2008/04/21(15:18:31), pages dumped: 336, first LSN: 45:1076:37, last LSN: 45:1092:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'d045406f-476d-435e-914b-fb34d5876a10'}). This is an informational message only. No user action is required.
2010-09-20 22:49:35.49 spid52 DBCC CHECKDB (TOED) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 2 minutes 33 seconds.
2010-09-20 22:52:28.21 Backup Database backed up. Database: MYREMINDERS, creation date(time): 2008/07/02(10:46:56), pages dumped: 37928, first LSN: 12856:506:54, last LSN: 12856:532:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'963dff09-9c18-4322-a257-e6961cb32ee1'}). This is an informational message only. No user action is required.
2010-09-20 22:54:28.99 spid52 DBCC CHECKDB (OLDCOMB) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 4 minutes 52 seconds.
2010-09-20 22:55:52.60 spid52 DBCC CHECKDB (VIDDROE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 21 seconds.
2010-09-20 22:56:36.96 spid52 DBCC CHECKDB (SOUTHCOAT) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 43 seconds.
2010-09-20 22:56:49.54 spid52 DBCC CHECKDB (ROZANAM) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 11 seconds.
2010-09-20 22:58:49.49 Server The time stamp counter of CPU on scheduler id 14 is not synchronized with other CPUs.
2010-09-20 23:00:40.37 spid52 DBCC CHECKDB (RVCH) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 3 minutes 50 seconds.
2010-09-20 23:01:28.56 Backup Database backed up. Database: ALTER_NTH, creation date(time): 2008/05/11(23:59:53), pages dumped: 151904, first LSN: 6879:8119:59, last LSN: 6879:8145:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'04aed67d-9512-4b44-a285-1711d1c1e181'}). This is an informational message only. No user action is required.
2010-09-20 23:01:55.34 spid52 DBCC CHECKDB (MOONLIGHTSIA) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 13 seconds.
2010-09-20 23:02:17.90 spid52 DBCC CHECKDB (UP_HILL) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 21 seconds.
2010-09-20 23:03:23.31 spid52 DBCC CHECKDB (CARRNAMBOLL) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 4 seconds.
2010-09-20 23:04:29.17 spid52 DBCC CHECKDB (BIGDONGA) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 4 seconds.
2010-09-20 23:06:17.17 spid52 DBCC CHECKDB (ANDHAM) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 46 seconds.
2010-09-20 23:06:49.50 Server The time stamp counter of CPU on scheduler id 10 is not synchronized with other CPUs.
2010-09-20 23:10:05.39 spid52 DBCC CHECKDB (WESTERN_RACE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 3 minutes 46 seconds.
2010-09-20 23:10:49.50 Server The time stamp counter of CPU on scheduler id 2 is not synchronized with other CPUs.
2010-09-20 23:11:16.67 spid52 DBCC CHECKDB (ALLUMBIK) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 9 seconds.
2010-09-20 23:12:02.86 spid52 DBCC CHECKDB (NTH_VERRA) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 45 seconds.
2010-09-20 23:14:40.59 spid52 DBCC CHECKDB (MANUSHBLINK) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 2 minutes 36 seconds.
2010-09-20 23:15:11.84 spid52 DBCC CHECKDB (ALTER_NTH) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 29 seconds.
2010-09-20 23:16:15.89 spid52 DBCC CHECKDB (REACH) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 3 seconds.
2010-09-20 23:18:34.89 spid52 DBCC CHECKDB (DARKHORSE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 2 minutes 18 seconds.
2010-09-20 23:21:14.25 spid52 DBCC CHECKDB (BENTLEY_RAYSIDE) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 2 minutes 38 seconds.
2010-09-20 23:23:12.41 spid52 DBCC CHECKDB (NOLAND) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 1 minutes 56 seconds.
2010-09-20 23:25:57.52 spid52 DBCC CHECKDB (KNOCK) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 2 minutes 43 seconds.
2010-09-20 23:26:56.17 spid52 DBCC CHECKDB (RUNNER_YEAST) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 57 seconds.
2010-09-20 23:29:08.38 spid52 DBCC CHECKDB (COTANGES) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 2 minutes 11 seconds.
2010-09-20 23:29:15.83 spid52 DBCC CHECKDB (MYREMINDERS) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 6 seconds.
2010-09-20 23:29:26.63 spid52 DBCC CHECKDB (CRUMBLORA) WITH no_infomsgs executed by ITSV0\SQLProdAdmin found 0 errors and repaired 0 errors. Elapsed time: 0 hours 0 minutes 10 seconds.
2010-09-20 23:29:29.16 Backup Database backed up. Database: master, creation date(time): 2010/08/30(09:43:15), pages dumped: 403, first LSN: 6662:32:37, last LSN: 6662:56:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\master\master_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:29:30.99 Backup Database backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 185, first LSN: 242:352:37, last LSN: 242:376:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\model\model_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:31:05.83 Backup Database backed up. Database: msdb, creation date(time): 2005/10/14(01:54:05), pages dumped: 476325, first LSN: 24257:7032:189, last LSN: 24257:7120:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\msdb\msdb_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:41:00.20 Backup Database backed up. Database: TDS, creation date(time): 2008/04/21(21:08:01), pages dumped: 1650332, first LSN: 27461:6932:40, last LSN: 27461:6958:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\TDS\TDS_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:44:20.93 Backup Database backed up. Database: GUNBURY, creation date(time): 2008/06/24(19:55:58), pages dumped: 447138, first LSN: 17305:151415:38, last LSN: 17305:151446:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\GUNBURY\GUNBURY_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:44:22.65 Backup Database backed up. Database: ASGNTS, creation date(time): 2008/04/21(15:18:31), pages dumped: 259, first LSN: 45:1100:37, last LSN: 45:1116:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\ASGNTS\ASGNTS_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:52:08.97 Backup Database backed up. Database: CAIRNSGALE, creation date(time): 2008/04/21(20:55:55), pages dumped: 360896, first LSN: 20194:8990:37, last LSN: 20194:9011:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'abf55643-1fd5-44aa-9686-8b3722ea68c9'}). This is an informational message only. No user action is required.
2010-09-20 23:54:50.67 Backup Database backed up. Database: CAIRNSGALE, creation date(time): 2008/04/21(20:55:55), pages dumped: 360866, first LSN: 20194:9019:37, last LSN: 20194:9035:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\CAIRNSGALE\CAIRNSGALE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:55:35.50 Backup Database backed up. Database: TASS_BOAST, creation date(time): 2008/04/21(20:56:30), pages dumped: 358280, first LSN: 31656:11165:37, last LSN: 31656:11197:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'d92f7bc7-2c50-4dbe-8dcb-8834d9200971'}). This is an informational message only. No user action is required.
2010-09-20 23:58:10.45 Backup Database backed up. Database: TASS_BOAST, creation date(time): 2008/04/21(20:56:30), pages dumped: 358314, first LSN: 31656:11205:37, last LSN: 31656:11221:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\TASS_BOAST\TASS_BOAST_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-20 23:58:49.95 Backup Database backed up. Database: TELLARINE, creation date(time): 2008/04/21(20:57:19), pages dumped: 242760, first LSN: 17481:18507:37, last LSN: 17481:18532:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'9806a97e-eec6-442a-be19-5f92ba90c3eb'}). This is an informational message only. No user action is required.
2010-09-21 00:00:04.17 spid16s This instance of SQL Server has been using a process ID of 2124 since 8/30/2010 9:43:30 AM (local) 8/29/2010 11:43:30 PM (UTC). This is an informational message only; no user action is required.
2010-09-21 00:00:35.44 Backup Database backed up. Database: TELLARINE, creation date(time): 2008/04/21(20:57:19), pages dumped: 242720, first LSN: 17481:18540:37, last LSN: 17481:18556:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\TELLARINE\TELLARINE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:02:41.53 Backup Database backed up. Database: CENTRAL_NOLAND, creation date(time): 2008/04/21(20:57:40), pages dumped: 296616, first LSN: 27563:29163:37, last LSN: 27563:29192:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\CENTRAL_NOLAND\CENTRAL_NOLAND_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:04:46.89 Backup Database backed up. Database: BENTLEY_RAYSIDE, creation date(time): 2010/08/26(22:08:59), pages dumped: 850168, first LSN: 24927:5596:39, last LSN: 24927:5639:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'41003113-90a8-4010-ae5b-ca25712ddd0a'}). This is an informational message only. No user action is required.
2010-09-21 00:04:50.91 Backup Database backed up. Database: COLOC, creation date(time): 2008/04/21(20:58:00), pages dumped: 269728, first LSN: 18038:39742:37, last LSN: 18038:39772:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\COLOC\COLOC_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:06:49.77 Backup Database backed up. Database: CENTRAL_NOLAND, creation date(time): 2008/04/21(20:57:40), pages dumped: 296632, first LSN: 27563:29200:37, last LSN: 27563:29216:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'5fbfef06-4af8-4a8e-9838-72e3e85f7aab'}). This is an informational message only. No user action is required.
2010-09-21 00:08:49.58 Backup Database backed up. Database: COLOC, creation date(time): 2008/04/21(20:58:00), pages dumped: 269680, first LSN: 18038:39780:37, last LSN: 18038:39796:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'ef92f229-0802-497f-939c-d323d001e69c'}). This is an informational message only. No user action is required.
2010-09-21 00:08:52.14 Backup Database backed up. Database: FROGBUD, creation date(time): 2010/08/24(10:27:05), pages dumped: 506276, first LSN: 17083:50635:37, last LSN: 17083:50651:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\FROGBUD\FROGBUD_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:09:12.07 Backup Database backed up. Database: EVELESFORD, creation date(time): 2008/04/21(20:59:41), pages dumped: 115896, first LSN: 9912:1504:37, last LSN: 9912:1525:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'20b181fb-e967-44f7-9da0-bdcd73dcafe0'}). This is an informational message only. No user action is required.
2010-09-21 00:09:26.05 Backup Database backed up. Database: RAMBOOLA, creation date(time): 2008/04/21(21:00:00), pages dumped: 27280, first LSN: 8071:7163:37, last LSN: 8071:7179:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'a8e61f43-59a9-40ee-b59c-bfd535682afa'}). This is an informational message only. No user action is required.
2010-09-21 00:10:09.93 Backup Database backed up. Database: EVELESFORD, creation date(time): 2008/04/21(20:59:41), pages dumped: 115864, first LSN: 9912:1533:37, last LSN: 9912:1549:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\EVELESFORD\EVELESFORD_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:10:28.80 Backup Database backed up. Database: RAMBOOLA, creation date(time): 2008/04/21(21:00:00), pages dumped: 27286, first LSN: 8071:7187:37, last LSN: 8071:7203:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\RAMBOOLA\RAMBOOLA_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:11:48.63 Backup Database backed up. Database: REACH, creation date(time): 2008/07/16(17:51:33), pages dumped: 331776, first LSN: 13746:12929:37, last LSN: 13746:12958:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'63db002a-3833-4a4e-90c5-7e5e094d85fc'}). This is an informational message only. No user action is required.
2010-09-21 00:13:15.38 Backup Database backed up. Database: YEAST_RESERVER, creation date(time): 2008/04/21(21:00:15), pages dumped: 383647, first LSN: 14525:566:37, last LSN: 14525:595:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\YEAST_RESERVER\YEAST_RESERVER_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:13:34.54 Backup Database backed up. Database: YEAST_TIMMERE, creation date(time): 2008/04/21(21:01:06), pages dumped: 31639, first LSN: 8752:581:37, last LSN: 8752:598:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\YEAST_TIMMERE\YEAST_TIMMERE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:14:58.85 Backup Database backed up. Database: GALLEE_BRACK, creation date(time): 2008/04/21(21:01:22), pages dumped: 185507, first LSN: 20498:3493:37, last LSN: 20498:3515:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\GALLEE_BRACK\GALLEE_BRACK_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:16:02.12 Backup Database backed up. Database: YEAST_RESERVER, creation date(time): 2008/04/21(21:00:15), pages dumped: 383680, first LSN: 14525:603:37, last LSN: 14525:619:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'c855e470-7f4c-49e1-a5b8-1ee425862c46'}). This is an informational message only. No user action is required.
2010-09-21 00:16:20.93 Backup Database backed up. Database: YEAST_TIMMERE, creation date(time): 2008/04/21(21:01:06), pages dumped: 31712, first LSN: 8752:606:37, last LSN: 8752:622:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'660fa8af-9412-497e-a816-68e4021dae7b'}). This is an informational message only. No user action is required.
2010-09-21 00:18:24.27 Backup Database backed up. Database: RUNNER_YEAST, creation date(time): 2008/06/02(18:10:12), pages dumped: 303792, first LSN: 17706:48374:37, last LSN: 17706:48401:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'1afa524b-e2ca-411c-9ddc-08b05d0afcf9'}). This is an informational message only. No user action is required.
2010-09-21 00:18:49.52 Server The time stamp counter of CPU on scheduler id 2 is not synchronized with other CPUs.
2010-09-21 00:20:02.35 Backup Database backed up. Database: TOED, creation date(time): 2008/04/21(21:01:38), pages dumped: 845479, first LSN: 24690:175010:39, last LSN: 24690:175060:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\TOED\TOED_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:25:11.81 Backup Database backed up. Database: KNOCK, creation date(time): 2008/05/29(22:20:25), pages dumped: 905360, first LSN: 20519:9660:39, last LSN: 20519:9707:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'91c3aa6d-f1d3-4786-a607-e91fe135909c'}). This is an informational message only. No user action is required.
2010-09-21 00:26:34.56 Backup Database backed up. Database: OLDCOMB, creation date(time): 2010/09/18(00:26:41), pages dumped: 1612347, first LSN: 34037:4372:137, last LSN: 34037:4473:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\OLDCOMB\OLDCOMB_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:26:40.98 Backup Database backed up. Database: GALLEE_BRACK, creation date(time): 2008/04/21(21:01:22), pages dumped: 185504, first LSN: 20498:3523:37, last LSN: 20498:3539:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'b0d38cf0-1673-4d34-a05f-cd48a533fb7b'}). This is an informational message only. No user action is required.
2010-09-21 00:28:44.68 Backup Database backed up. Database: VIDDROE, creation date(time): 2008/04/21(21:04:05), pages dumped: 461993, first LSN: 26058:9651:38, last LSN: 26058:9687:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\VIDDROE\VIDDROE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:29:34.23 Backup Database backed up. Database: SOUTHCOAT, creation date(time): 2008/04/21(21:04:53), pages dumped: 224157, first LSN: 13248:18158:37, last LSN: 13248:18182:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\SOUTHCOAT\SOUTHCOAT_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:29:49.37 Backup Database backed up. Database: ROZANAM, creation date(time): 2008/04/27(09:27:03), pages dumped: 49808, first LSN: 4699:2269:37, last LSN: 4699:2287:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\ROZANAM\ROZANAM_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:33:19.73 Backup Database backed up. Database: RVCH, creation date(time): 2010/09/19(22:08:43), pages dumped: 1269133, first LSN: 26695:16:11, last LSN: 26695:22:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\RVCH\RVCH_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:34:16.87 Backup Database backed up. Database: MOONLIGHTSIA, creation date(time): 2008/04/21(21:16:33), pages dumped: 388647, first LSN: 24708:35662:38, last LSN: 24708:35689:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\MOONLIGHTSIA\MOONLIGHTSIA_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:34:17.40 Backup Database backed up. Database: TOED, creation date(time): 2008/04/21(21:01:38), pages dumped: 845496, first LSN: 24690:175068:37, last LSN: 24690:175084:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'e03886c4-c5f8-43b9-bed4-4b3386897169'}). This is an informational message only. No user action is required.
2010-09-21 00:34:34.09 Backup Database backed up. Database: UP_HILL, creation date(time): 2008/04/21(21:20:02), pages dumped: 105113, first LSN: 10847:36658:37, last LSN: 10847:36680:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\UP_HILL\UP_HILL_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:35:28.62 Backup Database backed up. Database: CARRNAMBOLL, creation date(time): 2008/04/21(21:20:46), pages dumped: 347694, first LSN: 38581:34551:37, last LSN: 38581:34583:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\CARRNAMBOLL\CARRNAMBOLL_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:36:17.51 Backup Database backed up. Database: BIGDONGA, creation date(time): 2008/04/21(21:21:42), pages dumped: 344112, first LSN: 41013:19849:37, last LSN: 41013:19879:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\BIGDONGA\BIGDONGA_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:37:27.86 Backup Database backed up. Database: ANDHAM, creation date(time): 2008/04/21(21:22:29), pages dumped: 582950, first LSN: 24491:18293:38, last LSN: 24491:18333:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\ANDHAM\ANDHAM_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:40:08.03 Backup Database backed up. Database: WESTERN_RACE, creation date(time): 2008/04/27(10:51:29), pages dumped: 1253175, first LSN: 62519:4122:39, last LSN: 62519:4181:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\WESTERN_RACE\WESTERN_RACE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:41:01.30 Backup Database backed up. Database: ALLUMBIK, creation date(time): 2008/07/10(18:15:28), pages dumped: 368674, first LSN: 16931:66983:37, last LSN: 16931:67014:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\ALLUMBIK\ALLUMBIK_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:41:35.48 Backup Database backed up. Database: NTH_VERRA, creation date(time): 2008/07/14(18:54:35), pages dumped: 236189, first LSN: 12001:42238:37, last LSN: 12001:42265:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\NTH_VERRA\NTH_VERRA_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:42:02.77 Backup Database backed up. Database: MANUSHBLINK, creation date(time): 2008/05/05(22:30:59), pages dumped: 859248, first LSN: 21854:25040:38, last LSN: 21854:25078:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'bdfd24a4-a58d-4702-9b7b-25fb68a3a30b'}). This is an informational message only. No user action is required.
2010-09-21 00:43:53.41 Backup Database backed up. Database: MANUSHBLINK, creation date(time): 2008/05/05(22:30:59), pages dumped: 859180, first LSN: 21854:25086:37, last LSN: 21854:25102:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\MANUSHBLINK\MANUSHBLINK_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:44:14.49 Backup Database backed up. Database: ALTER_NTH, creation date(time): 2008/05/11(23:59:53), pages dumped: 151830, first LSN: 6879:8173:37, last LSN: 6879:8189:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\ALTER_NTH\ALTER_NTH_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:45:04.06 Backup Database backed up. Database: REACH, creation date(time): 2008/07/16(17:51:33), pages dumped: 331807, first LSN: 13746:12966:37, last LSN: 13746:12982:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\REACH\REACH_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:46:45.16 Backup Database backed up. Database: DARKHORSE, creation date(time): 2008/05/21(20:45:20), pages dumped: 761638, first LSN: 21325:39483:38, last LSN: 21325:39527:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\DARKHORSE\DARKHORSE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:48:41.63 Backup Database backed up. Database: BENTLEY_RAYSIDE, creation date(time): 2010/08/26(22:08:59), pages dumped: 850107, first LSN: 24927:5647:37, last LSN: 24927:5663:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\BENTLEY_RAYSIDE\BENTLEY_RAYSIDE_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:48:55.74 Backup Database backed up. Database: NOLAND, creation date(time): 2008/07/21(20:03:48), pages dumped: 631136, first LSN: 19877:93049:38, last LSN: 19877:93083:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'792acaa2-166a-4f9b-9c0d-173b8130edc0'}). This is an informational message only. No user action is required.
2010-09-21 00:50:29.50 Backup Database backed up. Database: NOLAND, creation date(time): 2008/07/21(20:03:48), pages dumped: 631078, first LSN: 19877:93091:37, last LSN: 19877:93107:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\NOLAND\NOLAND_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:52:28.05 Backup Database backed up. Database: KNOCK, creation date(time): 2008/05/29(22:20:25), pages dumped: 905388, first LSN: 20519:9715:37, last LSN: 20519:9731:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\KNOCK\KNOCK_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:53:11.97 Backup Database backed up. Database: RUNNER_YEAST, creation date(time): 2008/06/02(18:10:12), pages dumped: 303778, first LSN: 17706:48409:37, last LSN: 17706:48425:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\RUNNER_YEAST\RUNNER_YEAST_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:54:49.54 Server The time stamp counter of CPU on scheduler id 11 is not synchronized with other CPUs.
2010-09-21 00:54:51.83 Backup Database backed up. Database: COTANGES, creation date(time): 2008/06/16(23:12:46), pages dumped: 716582, first LSN: 19080:77633:38, last LSN: 19080:77672:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\COTANGES\COTANGES_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:54:59.66 Backup Database backed up. Database: MYREMINDERS, creation date(time): 2008/07/02(10:46:56), pages dumped: 37916, first LSN: 12857:33:37, last LSN: 12857:49:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\MYREMINDERS\MYREMINDERS_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:55:07.40 Backup Database backed up. Database: CRUMBLORA, creation date(time): 2008/07/07(16:38:19), pages dumped: 42772, first LSN: 4141:2927:37, last LSN: 4141:2945:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\CRUMBLORA\CRUMBLORA_backup_201009202329.bak'}). This is an informational message only. No user action is required.
2010-09-21 00:57:55.04 Backup Database backed up. Database: OLDCOMB, creation date(time): 2010/09/18(00:26:41), pages dumped: 1612320, first LSN: 34037:4481:37, last LSN: 34037:4497:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'656dc40f-6e9c-4558-80dc-0c6783a17667'}). This is an informational message only. No user action is required.
2010-09-21 00:59:21.52 Backup Database backed up. Database: VIDDROE, creation date(time): 2008/04/21(21:04:05), pages dumped: 462064, first LSN: 26058:9695:37, last LSN: 26058:9711:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'7f03c4b0-e804-4eb6-826b-03c82df255d2'}). This is an informational message only. No user action is required.
2010-09-21 01:00:20.31 Backup Database backed up. Database: ALLUMBIK, creation date(time): 2008/07/10(18:15:28), pages dumped: 368648, first LSN: 16931:67022:37, last LSN: 16931:67038:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'bda7e855-8a93-4464-8608-614946db2c33'}). This is an informational message only. No user action is required.
2010-09-21 01:02:21.77 Backup Database backed up. Database: NTH_VERRA, creation date(time): 2008/07/14(18:54:35), pages dumped: 236224, first LSN: 12001:42273:37, last LSN: 12001:42289:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'cd1d3dad-8ecf-4f39-baca-4e19a7b95304'}). This is an informational message only. No user action is required.
2010-09-21 01:06:49.31 Server The time stamp counter of CPU on scheduler id 4 is not synchronized with other CPUs.
2010-09-21 01:10:49.27 Server The time stamp counter of CPU on scheduler id 8 is not synchronized with other CPUs.
2010-09-21 01:14:49.26 Server The time stamp counter of CPU on scheduler id 10 is not synchronized with other CPUs.
2010-09-21 01:18:49.25 Server The time stamp counter of CPU on scheduler id 1 is not synchronized with other CPUs.
2010-09-21 01:24:19.14 Backup Database backed up. Database: SOUTHCOAT, creation date(time): 2008/04/21(21:04:53), pages dumped: 224152, first LSN: 13248:18190:37, last LSN: 13248:18206:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'5794f449-14a1-4ab7-af5d-7315e0fd5ad5'}). This is an informational message only. No user action is required.
2010-09-21 01:26:08.35 Backup Database backed up. Database: ROZANAM, creation date(time): 2008/04/27(09:27:03), pages dumped: 49792, first LSN: 4699:2295:37, last LSN: 4699:2311:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'3ae06b9f-66b4-4c4c-b902-0bb7d17805f9'}). This is an informational message only. No user action is required.
2010-09-21 01:38:49.26 Server The time stamp counter of CPU on scheduler id 2 is not synchronized with other CPUs.
2010-09-21 01:50:49.26 Server The time stamp counter of CPU on scheduler id 3 is not synchronized with other CPUs.
2010-09-21 02:14:49.27 Server The time stamp counter of CPU on scheduler id 4 is not synchronized with other CPUs.
2010-09-21 02:23:09.48 Backup Database backed up. Database: RVCH, creation date(time): 2010/09/19(22:08:43), pages dumped: 1269136, first LSN: 26695:30:37, last LSN: 26695:46:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'605ec80b-a13f-46bb-ba5a-2f3c1c043193'}). This is an informational message only. No user action is required.
2010-09-21 02:43:59.81 Backup Database backed up. Database: COTANGES, creation date(time): 2008/06/16(23:12:46), pages dumped: 716592, first LSN: 19080:77680:37, last LSN: 19080:77696:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'eef71e00-6095-402e-a82e-7cf140a38da8'}). This is an informational message only. No user action is required.
2010-09-21 02:54:49.29 Server The time stamp counter of CPU on scheduler id 2 is not synchronized with other CPUs.
2010-09-21 02:57:41.15 Backup Database backed up. Database: FROGBUD, creation date(time): 2010/08/24(10:27:05), pages dumped: 506352, first LSN: 17083:50659:37, last LSN: 17083:50675:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'9375adab-e539-4a88-aebb-ed74c7ca23f8'}). This is an informational message only. No user action is required.
2010-09-21 02:58:53.02 Backup Database backed up. Database: CRUMBLORA, creation date(time): 2008/07/07(16:38:19), pages dumped: 42768, first LSN: 4141:2953:37, last LSN: 4141:2969:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'39d6a072-855a-4585-a728-ac4c05729ded'}). This is an informational message only. No user action is required.
2010-09-21 03:06:49.29 Server The time stamp counter of CPU on scheduler id 9 is not synchronized with other CPUs.
2010-09-21 03:18:49.29 Server The time stamp counter of CPU on scheduler id 4 is not synchronized with other CPUs.
2010-09-21 03:22:49.30 Server The time stamp counter of CPU on scheduler id 10 is not synchronized with other CPUs.
2010-09-21 03:36:34.83 Backup Database backed up. Database: TDS, creation date(time): 2008/04/21(21:08:01), pages dumped: 1650296, first LSN: 27461:6966:37, last LSN: 27461:6982:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'fd866013-a8ab-48cc-b7e5-13ad9ab50a83'}). This is an informational message only. No user action is required.
2010-09-21 03:40:16.68 Backup Database backed up. Database: GUNBURY, creation date(time): 2008/06/24(19:55:58), pages dumped: 447200, first LSN: 17305:151454:37, last LSN: 17305:151470:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'008476da-2bcc-401c-8d92-25783e39eaa5'}). This is an informational message only. No user action is required.
2010-09-21 03:41:21.32 Backup Database backed up. Database: MOONLIGHTSIA, creation date(time): 2008/04/21(21:16:33), pages dumped: 388712, first LSN: 24708:35697:37, last LSN: 24708:35713:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'829cfd3a-0031-460f-a0de-99b2e7aaa6a7'}). This is an informational message only. No user action is required.
2010-09-21 03:41:40.99 Backup Database backed up. Database: UP_HILL, creation date(time): 2008/04/21(21:20:02), pages dumped: 105184, first LSN: 10847:36688:37, last LSN: 10847:36704:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'d0236755-ec06-46e8-a26a-a00fd023ea08'}). This is an informational message only. No user action is required.
2010-09-21 03:42:39.41 Backup Database backed up. Database: CARRNAMBOLL, creation date(time): 2008/04/21(21:20:46), pages dumped: 347704, first LSN: 38581:34591:37, last LSN: 38581:34607:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'1fb4095a-f6bb-41f5-96dd-e1794f7cb75d'}). This is an informational message only. No user action is required.
2010-09-21 03:45:51.91 Backup Database backed up. Database: WESTERN_RACE, creation date(time): 2008/04/27(10:51:29), pages dumped: 1253200, first LSN: 62519:4189:37, last LSN: 62519:4205:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'f2a1655a-0b2a-4198-9646-a9e18a48c311'}). This is an informational message only. No user action is required.
2010-09-21 03:47:53.38 Backup Database backed up. Database: DARKHORSE, creation date(time): 2008/05/21(20:45:20), pages dumped: 761696, first LSN: 21325:39535:37, last LSN: 21325:39551:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'35d5685a-eb1d-4ed8-8984-0131800eaebc'}). This is an informational message only. No user action is required.
2010-09-21 03:48:49.32 Backup Database backed up. Database: BIGDONGA, creation date(time): 2008/04/21(21:21:42), pages dumped: 344144, first LSN: 41013:19887:37, last LSN: 41013:19903:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'45901b7d-c11d-44a4-8142-a0ed8e3768ef'}). This is an informational message only. No user action is required.
2010-09-21 03:50:20.04 Backup Database backed up. Database: ANDHAM, creation date(time): 2008/04/21(21:22:29), pages dumped: 582960, first LSN: 24491:18341:37, last LSN: 24491:18357:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'efad0440-cbb5-439e-9038-c1ce07ebe2ce'}). This is an informational message only. No user action is required.
2010-09-21 03:50:53.12 Backup Log was backed up. Database: ASGNTS, creation date(time): 2008/04/21(15:18:31), first LSN: 45:1054:1, last LSN: 45:1121:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'f83caff2-9ac7-4cb1-b20c-3eb95fc573de'}). This is an informational message only. No user action is required.
2010-09-21 03:50:55.37 Backup Log was backed up. Database: MYREMINDERS, creation date(time): 2008/07/02(10:46:56), first LSN: 12856:504:1, last LSN: 12857:55:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'785f1370-940e-45a2-96ac-d0da86f63369'}). This is an informational message only. No user action is required.
2010-09-21 03:50:57.68 Backup Log was backed up. Database: ALTER_NTH, creation date(time): 2008/05/11(23:59:53), first LSN: 6879:7395:1, last LSN: 6879:8195:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'f8bd855c-6fe9-4321-99fc-d7f314298f66'}). This is an informational message only. No user action is required.
2010-09-21 03:51:00.01 Backup Log was backed up. Database: CAIRNSGALE, creation date(time): 2008/04/21(20:55:55), first LSN: 20194:8589:1, last LSN: 20194:9040:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'6870647d-fbd7-4d3d-b114-fffcec1b43e4'}). This is an informational message only. No user action is required.
2010-09-21 03:51:02.32 Backup Log was backed up. Database: TASS_BOAST, creation date(time): 2008/04/21(20:56:30), first LSN: 31656:10370:1, last LSN: 31656:11226:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'454c672a-58cf-42b3-936a-0aa7d31ae25e'}). This is an informational message only. No user action is required.
2010-09-21 03:51:04.54 Backup Log was backed up. Database: TELLARINE, creation date(time): 2008/04/21(20:57:19), first LSN: 17481:17713:1, last LSN: 17481:18561:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'965c1f84-792d-444f-a62a-c9c8ef558b41'}). This is an informational message only. No user action is required.
2010-09-21 03:51:06.81 Backup Log was backed up. Database: BENTLEY_RAYSIDE, creation date(time): 2010/08/26(22:08:59), first LSN: 24927:5027:1, last LSN: 24927:5669:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'d8d980aa-237e-4f17-910f-3792aa2172a7'}). This is an informational message only. No user action is required.
2010-09-21 03:51:09.17 Backup Log was backed up. Database: CENTRAL_NOLAND, creation date(time): 2008/04/21(20:57:40), first LSN: 27563:28375:1, last LSN: 27563:29221:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'6a4f40cc-2ff2-478d-980c-0a8623c2e0c7'}). This is an informational message only. No user action is required.
2010-09-21 03:51:11.56 Backup Log was backed up. Database: COLOC, creation date(time): 2008/04/21(20:58:00), first LSN: 18038:39070:1, last LSN: 18038:39801:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'07e10966-e964-4e93-b772-a717556901cf'}). This is an informational message only. No user action is required.
2010-09-21 03:51:13.85 Backup Log was backed up. Database: EVELESFORD, creation date(time): 2008/04/21(20:59:41), first LSN: 9912:1212:1, last LSN: 9912:1554:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'94688527-d623-407e-a1e8-58d896974c73'}). This is an informational message only. No user action is required.
2010-09-21 03:51:16.40 Backup Log was backed up. Database: RAMBOOLA, creation date(time): 2008/04/21(21:00:00), first LSN: 8071:7141:1, last LSN: 8071:7208:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'24b69b87-2b82-4bb0-b8c2-f1c902dca529'}). This is an informational message only. No user action is required.
2010-09-21 03:51:18.93 Backup Log was backed up. Database: REACH, creation date(time): 2008/07/16(17:51:33), first LSN: 13746:12285:1, last LSN: 13746:12987:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'87a0b392-f822-4915-a0da-e7328607bf0b'}). This is an informational message only. No user action is required.
2010-09-21 03:51:21.28 Backup Log was backed up. Database: YEAST_RESERVER, creation date(time): 2008/04/21(21:00:15), first LSN: 14524:47301:1, last LSN: 14525:624:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'15eb6d10-9860-4f8c-b4bc-2b55c80e2af2'}). This is an informational message only. No user action is required.
2010-09-21 03:51:23.93 Backup Log was backed up. Database: YEAST_TIMMERE, creation date(time): 2008/04/21(21:01:06), first LSN: 8752:572:1, last LSN: 8752:627:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'ca55d949-98e8-41ac-9018-3eba3fbcd5f4'}). This is an informational message only. No user action is required.
2010-09-21 03:51:26.59 Backup Log was backed up. Database: RUNNER_YEAST, creation date(time): 2008/06/02(18:10:12), first LSN: 17706:47894:1, last LSN: 17706:48430:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'60e53a6f-e23a-44b8-a00d-b893f8ddad77'}). This is an informational message only. No user action is required.
2010-09-21 03:51:28.92 Backup Log was backed up. Database: KNOCK, creation date(time): 2008/05/29(22:20:25), first LSN: 20519:8876:1, last LSN: 20519:9737:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'4c45702a-0a31-4614-811c-14bce853b913'}). This is an informational message only. No user action is required.
2010-09-21 03:51:31.40 Backup Log was backed up. Database: GALLEE_BRACK, creation date(time): 2008/04/21(21:01:22), first LSN: 20498:3127:1, last LSN: 20498:3544:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'13bc26e6-5cd2-4a45-a300-cde97007b6d7'}). This is an informational message only. No user action is required.
2010-09-21 03:51:34.15 Backup Log was backed up. Database: TOED, creation date(time): 2008/04/21(21:01:38), first LSN: 24690:174052:1, last LSN: 24690:175090:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'1171176a-3929-4d92-bcaf-b294f310919f'}). This is an informational message only. No user action is required.
2010-09-21 03:51:36.46 Backup Log was backed up. Database: MANUSHBLINK, creation date(time): 2008/05/05(22:30:59), first LSN: 21854:24993:1, last LSN: 21854:25108:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'68d8bfa0-2109-4cec-8dd7-5f9eaab5fed9'}). This is an informational message only. No user action is required.
2010-09-21 03:51:38.76 Backup Log was backed up. Database: NOLAND, creation date(time): 2008/07/21(20:03:48), first LSN: 19877:92561:1, last LSN: 19877:93113:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'0e6716e8-0b3b-43f0-aa5c-62195c16f35d'}). This is an informational message only. No user action is required.
2010-09-21 03:51:41.24 Backup Log was backed up. Database: OLDCOMB, creation date(time): 2010/09/18(00:26:41), first LSN: 34037:3894:1, last LSN: 34037:4503:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'455af063-1dd4-403e-bb61-51f0c78d1da9'}). This is an informational message only. No user action is required.
2010-09-21 03:51:43.76 Backup Log was backed up. Database: VIDDROE, creation date(time): 2008/04/21(21:04:05), first LSN: 26058:9166:1, last LSN: 26058:9717:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'76e26ce2-1267-40ba-af46-254b3ea30d11'}). This is an informational message only. No user action is required.
2010-09-21 03:51:46.07 Backup Log was backed up. Database: ALLUMBIK, creation date(time): 2008/07/10(18:15:28), first LSN: 16931:66490:1, last LSN: 16931:67043:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'050039d4-4971-4a72-a009-61c8a1463a31'}). This is an informational message only. No user action is required.
2010-09-21 03:51:48.42 Backup Log was backed up. Database: NTH_VERRA, creation date(time): 2008/07/14(18:54:35), first LSN: 12001:41416:1, last LSN: 12001:42294:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'1ed8b688-b075-47fa-b9e7-d7db098d3bcc'}). This is an informational message only. No user action is required.
2010-09-21 03:51:50.84 Backup Log was backed up. Database: SOUTHCOAT, creation date(time): 2008/04/21(21:04:53), first LSN: 13248:17510:1, last LSN: 13248:18211:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'951522f7-ae10-4fdb-9547-e7652c7a1250'}). This is an informational message only. No user action is required.
2010-09-21 03:51:53.15 Backup Log was backed up. Database: ROZANAM, creation date(time): 2008/04/27(09:27:03), first LSN: 4699:1736:1, last LSN: 4699:2316:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'27103895-8631-4fe6-ad05-42456ef0a0de'}). This is an informational message only. No user action is required.
2010-09-21 03:51:55.65 Backup Log was backed up. Database: RVCH, creation date(time): 2010/09/19(22:08:43), first LSN: 26694:418:1, last LSN: 26695:52:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'a11843cb-5445-4ffa-9d8c-5961950d6115'}). This is an informational message only. No user action is required.
2010-09-21 03:51:58.01 Backup Log was backed up. Database: COTANGES, creation date(time): 2008/06/16(23:12:46), first LSN: 19080:76971:1, last LSN: 19080:77702:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'ad66e7b3-a1f5-4977-9eb6-6f8b1960d125'}). This is an informational message only. No user action is required.
2010-09-21 03:52:00.32 Backup Log was backed up. Database: FROGBUD, creation date(time): 2010/08/24(10:27:05), first LSN: 17083:50613:1, last LSN: 17083:50680:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'ebe75691-82ca-404d-9f3b-6593ba18a3de'}). This is an informational message only. No user action is required.
2010-09-21 03:52:02.62 Backup Log was backed up. Database: CRUMBLORA, creation date(time): 2008/07/07(16:38:19), first LSN: 4141:2535:1, last LSN: 4141:2974:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'587e8c6a-42d6-4c09-8f52-c2864c2e908c'}). This is an informational message only. No user action is required.
2010-09-21 03:52:04.92 Backup Log was backed up. Database: TDS, creation date(time): 2008/04/21(21:08:01), first LSN: 27461:6354:1, last LSN: 27461:6988:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'d99a3907-521a-41de-ab9c-208db01df20c'}). This is an informational message only. No user action is required.
2010-09-21 03:52:07.51 Backup Log was backed up. Database: GUNBURY, creation date(time): 2008/06/24(19:55:58), first LSN: 17305:150680:1, last LSN: 17305:151476:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'c9e09418-e7d6-4189-8603-5d8b1576c075'}). This is an informational message only. No user action is required.
2010-09-21 03:52:09.84 Backup Log was backed up. Database: MOONLIGHTSIA, creation date(time): 2008/04/21(21:16:33), first LSN: 24708:34833:1, last LSN: 24708:35719:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'c389e202-fd64-4eb3-ac9d-a582da9654a3'}). This is an informational message only. No user action is required.
2010-09-21 03:52:12.29 Backup Log was backed up. Database: UP_HILL, creation date(time): 2008/04/21(21:20:02), first LSN: 10847:36427:1, last LSN: 10847:36709:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'8165ff6f-efeb-4128-afa7-6ea11c919444'}). This is an informational message only. No user action is required.
2010-09-21 03:52:14.65 Backup Log was backed up. Database: CARRNAMBOLL, creation date(time): 2008/04/21(21:20:46), first LSN: 38581:33765:1, last LSN: 38581:34612:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'bfb62df3-88d1-4f31-b105-ed8fd592403f'}). This is an informational message only. No user action is required.
2010-09-21 03:52:16.99 Backup Log was backed up. Database: WESTERN_RACE, creation date(time): 2008/04/27(10:51:29), first LSN: 62519:3649:1, last LSN: 62519:4211:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'c03b039c-ba6e-434f-be37-39d027d08247'}). This is an informational message only. No user action is required.
2010-09-21 03:52:19.35 Backup Log was backed up. Database: DARKHORSE, creation date(time): 2008/05/21(20:45:20), first LSN: 21325:38676:1, last LSN: 21325:39557:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'34e85e22-77c9-49b6-84f3-932ed5a197cc'}). This is an informational message only. No user action is required.
2010-09-21 03:52:21.62 Backup Log was backed up. Database: BIGDONGA, creation date(time): 2008/04/21(21:21:42), first LSN: 41013:18903:1, last LSN: 41013:19908:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'855c0402-32b7-43f8-9551-30c104857b4c'}). This is an informational message only. No user action is required.
2010-09-21 03:52:23.81 Backup Log was backed up. Database: ANDHAM, creation date(time): 2008/04/21(21:22:29), first LSN: 24491:17487:1, last LSN: 24491:18363:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'33c7633f-d3a4-42c6-9bc0-22fc69f7613f'}). This is an informational message only. No user action is required.
2010-09-21 03:52:40.67 Backup Database backed up. Database: master, creation date(time): 2010/08/30(09:43:15), pages dumped: 464, first LSN: 6666:176:37, last LSN: 6666:200:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'8ec1bcc2-a6df-47f6-9672-5a420668d4be'}). This is an informational message only. No user action is required.
2010-09-21 03:52:43.62 Backup Database backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 256, first LSN: 242:416:37, last LSN: 242:440:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'e28b7c6b-5bee-4f2a-adf7-472dc90ba51e'}). This is an informational message only. No user action is required.
2010-09-21 03:53:57.54 Backup Database backed up. Database: msdb, creation date(time): 2005/10/14(01:54:05), pages dumped: 476408, first LSN: 24257:8384:10, last LSN: 24257:8400:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'7e6a2b08-0f80-40ce-9ec7-d321df40bacc'}). This is an informational message only. No user action is required.
2010-09-21 04:14:49.32 Server The time stamp counter of CPU on scheduler id 1 is not synchronized with other CPUs.
2010-09-21 04:34:49.32 Server The time stamp counter of CPU on scheduler id 4 is not synchronized with other CPUs.
2010-09-21 04:58:49.33 Server The time stamp counter of CPU on scheduler id 3 is not synchronized with other CPUs.
2010-09-21 06:00:14.37 Backup Log was backed up. Database: ALTER_NTH, creation date(time): 2008/05/11(23:59:53), first LSN: 6879:8195:1, last LSN: 6879:8195:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'H:\MSSQL\Backup\ALTER_NTH\ALTER_NTH_backup_201009210600.trn'}). This is an informational message only. No user action is required.



All these days I was trying to find the error for me to post something here so that I might give some more inputs....

I have tried various ways couldn't find any......help please.
Go to Top of Page

jeffw8713
Aged Yak Warrior

819 Posts

Posted - 2010-09-21 : 16:21:44
Starting at 2010-09-21 03:51, you are backing up the transaction logs of several databases. Those log backups appear to be backed up using a third-party tool to perform the backup.

quote:

2010-09-21 03:50:53.12 Backup Log was backed up. Database: ASGNTS, creation date(time): 2008/04/21(15:18:31), first LSN: 45:1054:1, last LSN: 45:1121:1, number of dump devices: 1, device information: (FILE=1, TYPE=VIRTUAL_DEVICE: {'f83caff2-9ac7-4cb1-b20c-3eb95fc573de'}). This is an informational message only. No user action is required.



The above is showing that the log was backed up to a virtual device.

You need to identify what tool is being used to perform that backup so you can use that log backup for your restore.

Jeff
Go to Top of Page
   

- Advertisement -