We have a hosted web server with sql server 2022 web edition which we pay the hosting company for.
We need to introduce some automation via ssis packages. Can we install integration services with web edition, or somehow execute / schedule the packages?
I had read some suggestions of installing developer edition alongside Web edition to run the SSIS packages, but I assume that is not a recommended / accepted solution.
Has anyone else come up with any workarounds to this? Can We exceute packages via command line, or perhaps I need to look in to creating a Windows service for automation rather than SSIS?
Most of the automation we wish to do is integrating with 3rd party API / Web Services - we need to send and receive data and files. Ordinarily I would just use SSIS packages to achieve this - had a quick look at dbatools functions that seems more to do with admin automation (as the name implies) - I am happy to build in C# (SSIS code is anyway) so would people recommend building some custom services, or are there tools out there that help with API integration?
What I like about SSIS packages is they are self contained (task/API specific) and can be easily debugged / scheduled etc - writing a web service to do it all seems like I would be creating a bit of a "black box" which would become unwieldy over time.