I have some C# code and i want that this C# should run exactly at 5 in the evening for that i need to create a job on a server. For creating job i need an ETL package.
How to make ETL of C# code?
I have some C# code and i want that this C# should run exactly at 5 in the evening for that i need to create a job on a server. For creating job i need an ETL package.
How to make ETL of C# code?
The obvious answer would be to use a script task in the control flow. You can put your C# code there and have it execute. The tricky bit is if your code needs access to non-standard libraries in which case you'll need those deployed to the GAL on the server.
You could also use the execute process task if you have a compiled executable but in that case I would imagine you could just copy it to the server and use windows scheduler.
You can also directly run executables using the SQL agent: How execute exe file from sql agent or job?