如何安排作业每天运行 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.

推荐答案

  1. 展开 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)

相关文章