返回顶部
首页 > 资讯 > 错误编码 >ORA-31487: cannot support begin dates or end dates in this configuration ORACLE 报错 故障修复 远程处理
  • 109
分享到

ORA-31487: cannot support begin dates or end dates in this configuration ORACLE 报错 故障修复 远程处理

报错故障support 2023-11-05 01:11:22 109人浏览 独家记忆
摘要

文档解释 ORA-31487: cannot support begin dates or end dates in this configuration Cause: The specified values cannot be used

文档解释

ORA-31487: cannot support begin dates or end dates in this configuration

Cause: The specified values cannot be used in a Distributed HotLog configuration.

Action: Remove the specified values from the CREATE_CHANGE_SET CDC api call.

ORA-31487错误是由于装置中不支持开始日期或结束日期导致的。

官方解释

ORA-31487表明此配置不支持启动或停止日期。

常见案例

ORA-31487在以下情况下可能会发生:

· 尝试以两个不同的日期调度同一个任务;

· 没有指定job_queue_processes参数,但尝试将任务调度到开始或结束日期。

一般处理方法及步骤

1. 确保 job_queue_processes 参数已经指定,并且处于打开状态:

2. 请确保同一个任务的启动日期与结束日期一致:

3. 通过以下命令检查job_queue_processes参数:

sql> show parameter job_queue_processes

4. 如果job_queue_processes参数未定义,可以使用以下命令创建它:

SQL> alter system set job_queue_processes=10;

5. 使用以下命令重新创建相同的任务:

SQL> BEGIN

DBMS_SCHEDULER.CREATE_JOB (

job_name=>’test_job’,

job_type=>’PLSQL_BLOCK’,

job_action=>’begin null; end;’,

start_date=>systimestamp,

end_date=>systimestamp + INTERVAL ‘2’ DAY,

enabled=>TRUE,

auto_drop=>FALSE

);

END;

--结束END--

本文标题: ORA-31487: cannot support begin dates or end dates in this configuration ORACLE 报错 故障修复 远程处理

本文链接: https://lsjlt.com/news/529310.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作