SQL Database automatic back up

backup, lan, sql

Solution

Auto Backup Database Using Maintenance Plans

Simple Step :

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

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

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

Click Configure > Set Schedule according your demands.

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

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

- Click Next, Choose your report mode, then Finish.

Problem

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).

Original source

Related problems