zoukankan      html  css  js  c++  java
  • 连接oracle数据库,修改启动定时任务所需项 job_queue_processes

     1 C:UsersAdministrator>sqlplus sys/sys@192.168.1.251/orcl as sysdba
     2 
     3 SQL*Plus: Release 11.2.0.1.0 Production on 星期六 12月 16 03:51:28 2017
     4 
     5 Copyright (c) 1982, 2010, Oracle.  All rights reserved.
     6 
     7 
     8 连接到:
     9 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    10 With the Partitioning, OLAP, Data Mining and Real Application Testing options
    11 
    12 SQL> select value from v$parameter where name like '%job_queue_processes%'
    13   2
    14 SQL> alter system set job_queue_processes = 30
    15   2
    16 SQL> alter system set job_queue_processes = 30;
    17 
    18 系统已更改。
    19 
    20 SQL> select value from v$parameter where name like '%job_queue_processes%' ;
    21 
    22 VALUE
    23 --------------------------------------------------------------------------------
    24 
    25 30
    26 
    27 SQL> select value from v$parameter where name like '%job_queue_processes%'
    除了写代码还会干什么
  • 相关阅读:
    关押罪犯
    食物链
    归并排序(分治)
    并查集+路径压缩
    3的幂的和
    斐波那契数列的第N项
    0和5
    扔盘子
    线段相交
    回文字符串
  • 原文地址:https://www.cnblogs.com/zyx-/p/8045578.html
Copyright © 2011-2022 走看看