Background:
I currently have my SQL Server back itself up every day at 5 pm. It does this through running a job on the SQL Server Agent. Each Step has the following code:
Backup Database Bagging
To Disk='C:\MPCS Backup\Bagging.bak' with INIT;
I then have a backup later in the day that takes the backup on my C drive and copies it to an online source.
My Question:
I am trying to figure out what would happen in the worse case scenario aka the computer with the server on it dies. I know I can reinstall the server through Microsoft online, but I am wondering how to retrieve the data from my backup files. On each database I have tables with data, and that is all. So in the worse case scenario I need to be able to retrieve the data from those tables that I have backed up.
Thank you in advance for any help!
Monika