I've got a web server and a database server, and I'd like to run a job that uses an existing C# DLL to access the database and perform some calculations.
Is the simplest method to create a console app in C# and schedule it on the web server (app server) to run against the DB server?
I see SSIS as an option, but I don't know that well, so I thought a console app scheduled as a task would be best.
What do you think?