Window service

  • Thread starter Thread starter vicky
  • Start date Start date
V

vicky

I wanted to make a service which will take backup of sql db after 10 min.
Should i code all backup logic in the service itself or should i make a
second app and call that app from the service after every 10 min.

vicky
 
Should i code all backup logic in the service itself or should i make a
second app and call that app from the service after every 10 min.

not sure whether u can achieve anything more than what u would by
performing the task using the service . u may consider threading if u
reckon your task isnt going to complete within the specified interval .
 
Back
Top