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.
Author |
Topic |
benildusmuerling
Yak Posting Veteran
81 Posts |
Posted - 2012-05-23 : 21:30:06
|
Hi Geeks,I know the path of the Database being backed up, and I see the .bak files in those locations, but when I go in the SQL Server studio application, I am not able to see from which window, the location of the backup is been placed. for instance I want to verify that these backups have been backed up, courtesy of this application.Thhis is a SQL serever 2008 version.Thanks for reading my post.Thanks,AB |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
prett
Posting Yak Master
212 Posts |
Posted - 2012-05-25 : 06:45:27
|
You can easily verify that your backup file gets successfully back up or not by using following query:dbo.backupset: provides information concerning the most-granular details of the backup processdbo.backupmediafamily: provides metadata for the physical backup files as they relate to backup setsdbo.backupfile: this system view provides the most-granular information for the physical backup filesFor more information you can visit this link:http://www.mssqltips.com/sqlservertip/1601/script-to-retrieve-sql-server-database-backup-history-and-no-backups/ |
|
|
|
|
|