sysjobservers (Transact-SQL)

存储特定作业与一个或多个目标服务器的关联或关系。此表存储在 msdb 数据库中。

列名

数据类型

说明

job_id

uniqueidentifier

作业标识号。

server_id

int

服务器标识号。

last_run_outcome

tinyint

作业上次运行的结果:

0 = 失败

1 = 成功

3 = 取消

last_outcome_message

nvarchar(1024)

与 last_run_outcome 列关联的消息(如果有)。

last_run_date

int

上次运行作业的日期。

last_run_time

int

上次运行作业的时间。

last_run_duration

int

作业运行的持续时间,以小时、分钟和秒为单位。使用以下公式计算:(小时*10000)+(分钟*100)+ 秒。

请参阅

其他资源