I have to write an console application to import log files daily to database. The log files and the database are on different servers. And then an web application will search through this database.
I'm considering that should I migrate importing application to this web app or I config this app as a job in SQL Server. (as mentioned earlier, importing works must be done daily, at specific time).
In case that I should migrate to the web app, how can I schedule this effectively? (i'm using C#)