-1

I want to take a backup of a table in my database for every 2hrs is it possible?

I have a backup table in my database which holds the values from a different table

I wanted to know whether I can schedule this backup for every two hours

I dont need a full database back up i need just a table

Illuminati
  • 555
  • 2
  • 7
  • 34
  • possible duplicate of [table level backup](http://stackoverflow.com/questions/680552/table-level-backup) – billinkc Jul 24 '13 at 18:51

2 Answers2

2

You can move the table into its own filegroup and backup just that filegroup. This article describes how to back up a single file or filegroup.

JAQFrost
  • 1,431
  • 8
  • 8
0

You can backup the whole database using the method outlined in this post: how to schedule backup in sql server 2008?

Community
  • 1
  • 1
mwhobrey
  • 65
  • 1
  • 10