Azure SQL 程序添加到调度程序中
Azure SQL procedure add in schedulers
我有 Azure SQL 程序,用于将数据从 table A 迁移到 table B。我需要每隔 15 分钟 运行 这个程序.
我以为我可以为此使用 Azure webjob,但我不知道如何调用我的 azure sql 过程。
azure sql 中是否有任何可用的调度程序,或者如何将 Azure sql 过程添加到 Azure 调度程序?
调度 Azure SQL 数据库存储过程的一个选项是利用 Azure Automation. There is a blog post which explains how to run TSQL with Azure Automation here. Azure Automation has a scheduler built in, however if it doesn't meet your needs, you could leverage Azure Scheduler to schedule the Automation Runbook。
我有 Azure SQL 程序,用于将数据从 table A 迁移到 table B。我需要每隔 15 分钟 运行 这个程序. 我以为我可以为此使用 Azure webjob,但我不知道如何调用我的 azure sql 过程。 azure sql 中是否有任何可用的调度程序,或者如何将 Azure sql 过程添加到 Azure 调度程序?
调度 Azure SQL 数据库存储过程的一个选项是利用 Azure Automation. There is a blog post which explains how to run TSQL with Azure Automation here. Azure Automation has a scheduler built in, however if it doesn't meet your needs, you could leverage Azure Scheduler to schedule the Automation Runbook。