IMPAX 6.5.1 Server Knowledge Base home > SQL Server home

Scheduling additional SQL database backup jobs

Note:

Note:

Ensure that you are logged in using the AgfaService account; you cannot log into SQL Server Management Studio using the Administrator account.

This procedure applies to SQL Server 2005 and SQL Server 2008.

To guard against information loss, back up the database daily to tape or disk. In case of system failure, the database can be restored from a backup.

CAUTION!

CAUTION!

If backups are not created regularly, the transaction log fills up and eventually halts the operation of your system. Also note that you must do an initial backup of your database. Otherwise, SQL Server assumes that you do not want transaction logs maintained.

A schedule_backup job is automatically installed and enabled with the software package. This backup is scheduled to run at 12:00 midnight every day. In addition to the schedule_backup job, you can enable and schedule the differential or incremental database backup jobs, if required.

To configure an additional time to run a database backup at, perform the task that follows.

To schedule additional SQL database backup jobs

  1. Ensure that you have done an initial manual backup of your database.

  2. Open the SQL Server Management Studio.

  3. In the Object Explorer window of the Management Studio, expand server > SQL Server Agent > Jobs

    where server is the name of the SQL Server that the program is running under.

  4. Right-click schedule_backup and choose Properties.

  5. In the Properties dialog, switch to the Schedules tab.

  6. Click New.

  7. In the New Job Schedule dialog, in the Name field, type Daily Backup.

  8. Set other configuration options as appropriate for site requirements.

  9. To apply the changes, click OK.

  10. If you are configuring a disk backup:

    1. Switch to the Steps tab.

    2. Select Edit.

    3. In the Command field, type exec sp_backup_database @dump_device_name='disk_backup1'.

    4. To apply the change, click OK.

  11. To close the Job Properties dialog, click OK.

  12. Exit the SQL Server Management Studio.


See also


Topic number: 46983

Applies to: IMPAX 6.5.1 Server Knowledge Base