sql的job没有运行
时间: 2023-09-15 08:15:03 浏览: 205
如果 SQL Job 没有运行,可能有以下几个原因:
1. Job 没有启用:在 SQL Server Agent 中,选中对应的 Job,右键选择“Start Job at Step…”,如果可以手动启动 Job,那么就是 Job 没有启用。
2. Job Schedule 没有配置正确:在 SQL Server Agent 中,选中对应的 Job,右键选择“Properties”,在“Schedules”页签中检查 Job 执行计划是否配置正确。
3. Job 步骤配置错误:在 SQL Server Agent 中,选中对应的 Job,右键选择“Properties”,在“Steps”页签中检查 Job 步骤是否配置正确。
4. 相关服务没有启动:在 SQL Server Configuration Manager 中,检查 SQL Server Agent 和 SQL Server 数据库引擎服务是否已经启动。
希望以上内容能够帮助您解决问题。
相关问题
PL SQL JOBLOG
PL/SQL JOBLOG 是 Oracle 数据库中的一个系统表,用于记录作业(Job)的运行日志信息。该表存储了作业执行的详细信息,包括作业的名称、开始时间、结束时间、状态等。
要查询 PL/SQL JOBLOG,可以使用以下 SQL 查询语句:
```sql
SELECT job_name, session_id, log_date, status
FROM dba_scheduler_job_log
ORDER BY log_date DESC;
```
这个查询语句从 `dba_scheduler_job_log` 表中检索作业日志的相关信息,并按照日志日期倒序排序。可以根据需要添加其他条件或字段来获取更详细的信息。
请注意,查询 PL/SQL JOBLOG 需要具有适当的数据库权限,例如 `SELECT` 权限和访问 `dba_scheduler_job_log` 表的权限。如果没有这些权限,你可能需要联系数据库管理员来获取所需的权限。
select a.job_id, a.job_name, a.job_group, a.invoke_target, a.cron_expression, a.misfire_policy, a.concurrent, a.status, a.create_by, a.create_time, a.remark, a.job_des, a.cron_des, b.status as last_execute_status, b.create_time as last_execute_time from sys_job a left join sys_job_log b ON a.job_name = b.job_name and a.job_group = b.job_group where b.create_time = (select max(create_time) from sys_job_log c where a.job_name = c.job_name and a.job_group = c.job_group) or b.create_time is null 此SQl为Oracle运行环境,因为sys_job_log有create_time相同的数据导致了数据重复,如何解决
可以在子查询中增加一个条件,筛选出除了最大create_time之外的数据,即:
```
select a.job_id, a.job_name, a.job_group, a.invoke_target, a.cron_expression, a.misfire_policy, a.concurrent, a.status, a.create_by, a.create_time, a.remark, a.job_des, a.cron_des, b.status as last_execute_status, b.create_time as last_execute_time
from sys_job a
left join sys_job_log b ON a.job_name = b.job_name and a.job_group = b.job_group
where b.create_time = (select max(c.create_time) from sys_job_log c where a.job_name = c.job_name and a.job_group = c.job_group and c.create_time < b.create_time) or b.create_time is null
```
这样可以避免重复数据的问题。
阅读全文