Unsolved
This post is more than 5 years old
1 Rookie
•
39 Posts
0
1457
June 11th, 2008 20:00
SQL Backup Performed Every night
Thank you to all in advance for you help!
Long story short, all my SQL servers are doing nightly fulls even when they are specified to do an incremental. I have went through all the databases and ensured the Recovery Model is set to "Full" and I have also went through the SQL Server Agent Jobs / Management Jobs and ensured that there are any scheduled backup jobs there. However, all of my nsrsqlsv.log files read :
Promoting the backup level to full.[2224] 06/11/08 22:00:15 Last backup of database 'xxxxx' was not created using NMSQL Module.
Can anyone help me with this issue as I am chewing up tapes like crazy! The SQL Server logs also do not show any backup jobs in between the times I run the backups. I have also attempted to setup one of the servers to do interval backups every hour with "Force Incremental" enabled, but I still receive the above message in my nsrsqlsv.log
Thank you!
Long story short, all my SQL servers are doing nightly fulls even when they are specified to do an incremental. I have went through all the databases and ensured the Recovery Model is set to "Full" and I have also went through the SQL Server Agent Jobs / Management Jobs and ensured that there are any scheduled backup jobs there. However, all of my nsrsqlsv.log files read :
Promoting the backup level to full.[2224] 06/11/08 22:00:15 Last backup of database 'xxxxx' was not created using NMSQL Module.
Can anyone help me with this issue as I am chewing up tapes like crazy! The SQL Server logs also do not show any backup jobs in between the times I run the backups. I have also attempted to setup one of the servers to do interval backups every hour with "Force Incremental" enabled, but I still receive the above message in my nsrsqlsv.log
Thank you!
0 events found
No Events found!


amediratta
2 Intern
•
2K Posts
0
June 11th, 2008 21:00
The only starneg thing is second part: Last backup was not created using NMSQL module. Is anyone running manual SQL backups? It could also be that it is not writing indexes properly and therefore it is not able to read its own databases for the last backup.
What is the status of backups in Networker and are you able to recover databases through Networker?
SigmaAdmin
1 Rookie
•
39 Posts
0
June 12th, 2008 05:00
Yes, I can restore the databases and the backups run successfully. However, they run fulls every night. I do not see anything in the SQL History logs regarding other Backups. How do I ensure that the Databases are set in Transaction Logs mode?
Thank you,
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
June 12th, 2008 05:00
SigmaAdmin
1 Rookie
•
39 Posts
0
June 12th, 2008 08:00
Thanks!
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
June 12th, 2008 09:00
SigmaAdmin
1 Rookie
•
39 Posts
0
June 12th, 2008 17:00
Thanks!
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
June 13th, 2008 00:00
SigmaAdmin
1 Rookie
•
39 Posts
0
June 13th, 2008 05:00
<< "C:\" >>
+skip: *.ldf *.LDF *.mdf *.MDF *.ndf *.NDF
+aes: *.*
+compressasm: .
<<"C:\i386">>
+skip:.?**
<< "D:\" >>
+skip: *.ldf *.LDF *.mdf *.MDF *.ndf *.NDF
+aes: *.*
+compressasm: .
<< / >>
+skip: *.ldf *.LDF *.mdf *.MDF *.ndf *.NDF
+aes: *.*
+compressasm: .
Thank you!
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
June 13th, 2008 07:00
SigmaAdmin
1 Rookie
•
39 Posts
0
June 13th, 2008 08:00
<< / >>
+skip: *.ldf
+skip: *.mdf
+skip: *.ndf
+skip: *.MDF
+skip: *.LDF
+skip: *.NDF
+aes: *.*
+compressasm: .
at the top of the directive rather than <<"C:\">> and so on.
Thanks to all for your help!