Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Database automatic back up [closed]

Tags:

I have an SQL database - I need to back it up everyday (at a minimum) - preferably multiple times a day - automatically so it definitely gets done.

I'm running Windows which the SQL database is stored on.

What programs (prefer free ones) can I use to back it up - I'm completely new with SQL so if you're gonna explain something - do it in layman's terms thanks (:

It needs to get backed up to another server (on the LAN).

like image 753
chuck Avatar asked Jan 31 '13 01:01

chuck


1 Answers

Auto Backup Database Using Maintenance Plans

Simple Step :

  1. Go To SQL Server Configuration Manager > SQL Server Services > Run SQL Server Agent (Set it to Run Automatically)

  2. Go To SQL Server Management Studio, Find TAB Management > Maintenance Plans. Right Click > Maintenance Plans Wizard.

  3. Text your maintenance plans, ex: DailyBackup. Select Option button : Single Schedule for entire task.

  4. Click Configure > Set Schedule according your demands.

  5. Select Maintenance tasks. for this case, you choose Full Database backup.

  6. Click Next, then define which database to backup, set backup location, and backup extension.

  7. Click Next, Choose your report mode, then Finish.
like image 133
pringgo_setiko Avatar answered Oct 03 '22 05:10

pringgo_setiko