Azure - 计划 SQL 作业
Azure - Schedule SQL Job
我正在创建一个包含以下内容的小型 Azure 站点
- 网站
- SQL 数据库
该网站支持用户帐户和许可。我计划通过计划的 SQL 服务(很像 SQL 服务器中的 SQL 代理)每天一次处理许可检查。
我有哪些选择?
如果您使用的是 Azure SQL 数据库(我假设您是),那么您没有 SQL 服务器代理。
不过,您有 2 个可能的选项可以满足您的需求:
- 使用Azure Automation, you can use PowerShell to do your scheduled tasks. More info and a sample here。如果您问我,Azure 自动化是 SQL 代理的代理。
- 另一个选项是Azure WebJobs. I think this is the way to go, as you are already using Azure WebSites and this comes as a feature of it. Scott Hanselman has an excellent blog post。
我正在创建一个包含以下内容的小型 Azure 站点
- 网站
- SQL 数据库
该网站支持用户帐户和许可。我计划通过计划的 SQL 服务(很像 SQL 服务器中的 SQL 代理)每天一次处理许可检查。
我有哪些选择?
如果您使用的是 Azure SQL 数据库(我假设您是),那么您没有 SQL 服务器代理。
不过,您有 2 个可能的选项可以满足您的需求:
- 使用Azure Automation, you can use PowerShell to do your scheduled tasks. More info and a sample here。如果您问我,Azure 自动化是 SQL 代理的代理。
- 另一个选项是Azure WebJobs. I think this is the way to go, as you are already using Azure WebSites and this comes as a feature of it. Scott Hanselman has an excellent blog post。