Is there a way to run a stored procedure on a schedule? I have a series of updates/inserts and an unload that I would want to run programmatically. I haven’t written those queries as a stored procedure yet because I want to first see if it can be run / called programmatically or if it’s something that glue would have to do? Where can I look to figure out how to do this?
I know that stored procedures in Redshift are very new. I'm currently executing my code in Pycharm Professional and I've been able to create and run a simple stored procedure.
My updates & inserts (before writing them as a stored procedure) are very similar to the formats specified in Performing a Merge operation by specifying a column list - Amazon Redshift.
Any help will be much appreciated? Are there any references that you could share?