I'm trying to call a procedure on Amazon RDS that is located in a SQL Server Express database. SQL Server Express does not have a task scheduler, so the closest I have got to a solution is to use an EC2 instance I have running and create a batch file to which I can attach a statement like the one below:
sqlcmd -Q "exec myproc" -SERVERDNSADDRESS -DATABASENAME.
But everywhere I read says that RDS doesn't allow this. Are there any Amazon services I can use to fill the gap? How do I go about executing this procedure on a daily basis? Should I be using AWS Data pipeline for such a simple task, and if so are there any tutorials out there (besides the AWS ones) that can help?