2

I need to create a scheduling service which will poll the database after a specific time interval, pick the required objects and send it to a WCF service to perform the required task.

Shall I use the windows worker thread? or is there any other ready to use component that windows / third party provides?

oleksii
  • 35,458
  • 16
  • 93
  • 163
Ram
  • 11,404
  • 15
  • 62
  • 93

2 Answers2

0

You can use SQL Server Agent for this task.

Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541
0

why don't you create a windows service... and in that run a timer that will fire an even on specific interval... this allows you to run your code at specific interval... without any user interaction..

Usman Masood
  • 1,937
  • 2
  • 17
  • 33