How can I schedule a job to run a SQL query daily?(如何安排作业每天运行 SQL 查询?)
问题描述
我需要知道如何使用 SQL Server 代理作业每天运行 SQL 查询,并使用最少的配置设置.
I need to know how to make a SQL query run daily using a SQL Server Agent job, with minimum required configuration settings.
推荐答案
展开 SQL Server Agent 节点并右键单击 SQL Server Agent 中的 Jobs 节点并选择
'New Job'
在 'New Job' 窗口中,在 'General' 选项卡上输入作业名称和描述.
In the 'New Job' window enter the name of the job and a description on the 'General' tab.
选择窗口左侧的'Steps',然后点击底部的'New'.
Select 'Steps' on the left hand side of the window and click 'New' at the bottom.
在 'Steps' 窗口中输入步骤名称并选择您希望查询运行的数据库.
In the 'Steps' window enter a step name and select the database you want the query to run against.
将要运行的 T-SQL 命令粘贴到命令窗口中,然后单击 'OK'.
Paste in the T-SQL command you want to run into the Command window and click 'OK'.
点击新建作业"窗口左侧的'日程'菜单并输入日程信息(例如每天和时间).
Click on the 'Schedule' menu on the left of the New Job window and enter the schedule information (e.g. daily and a time).
点击'OK' - 就是这样.
(当然您可以添加其他选项 - 但我想说这是设置和安排工作所需的最低限度)
(There are of course other options you can add - but I would say that is the bare minimum you need to get a job set up and scheduled)
这篇关于如何安排作业每天运行 SQL 查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何安排作业每天运行 SQL 查询?
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- SQL 临时表问题 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
