Job_queue_processes set to 0

Hi guys,
one question.
Next Weekend i have to migrate the database cluster from the old server onto new server but there is one Problem. How can i prevent that all database jobs are running after starting the database?
I read about the parameter job_queue_processes, you can set them to 0 and it prevents the run of each database job.
Is this right, and if yes is this true for dba_jobs and dba_scheduler_jobs?
best regards
sascha

Hi Mark,
Hi Pierre,
in this case i have to set job_queue_processes to 0 (disable all dba_jobs)
and to set MAX_JOB_SLAVE_PROCESSES to 0 with DBMS_SCHEDULER.SET_SCHEDULER_ATTRIBUTE.
+(In special scenarios a dba can still limit the maximum number of slaves to be started by the coordinator by setting the MAX_JOB_SLAVE_PROCESSES with the DBMS_SCHEDULER.SET_SCHEDULER_ATTRIBUTE procedure.)+
Is this right?
best regard and thanks for your fast response
sascha

Similar Messages

  • How to set 'job_queue_processes' ?

    Hello,
    I have installed Oracle 10 on Linux RedHat Advanced Server 3, and during the database creation part of the install I got the message 'ORA-12547: TNS: lost contact' several times. At the end, I was told that the configuration failed because job_queue_processes must be greater than or equal to 1. I set job_queue_prcesses to 1 in init.ora When I ran emca to configure the database, I got the same error message at the end: "SEVERE: 'job_queue_processes' must be greater than or equal to 1'.
    Am I setting job_queue_processes correctly ?
    job_queue_processes = 1
    Is it neccessary to shutdown and restart an oracle process before the new job_queue_processes setting can take effect ? If so, can someone please show me what to stop and restart ? If not, can someone please show me how to correctly set job_queue_processes ?
    Thanks,
    Colm.

    Thanks for the response, I am new to Oracle, and I do not know in what context you are supposed to invoke the ALTER SYSTEM command. Is it after connecting to Oracle with sqlplus ? If that's the case, that won't work because I cannot connect; I am getting the following:
    $ sqlplus /nolog
    SQL> connect / as sysdba
    ERROR:
    ORA-12547: TNS:lost contact
    SQL> alter system set job_queue_processes=10 scope=both
    2 ;
    SP2-0640: Not connected
    The 'lost contact' message is what I was seeing during the Database Configuration part of the install.
    Thanks,
    Colm.

  • ORA-00600 in AQ background job

    Hi all,
    I am getting an ORA-00600 in AQ background job responsible for dequeuing messages.
    The trace output is as follows:
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kwqidjqp0], [], [], [], [], [], [], []
    Current SQL statement for this session:
    DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN := FALSE; BEGIN sys.dbms_aqadm_sys.register_driver(); :mydate := next_date; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    6713D69C 7249 package body SYS.DBMS_AQADM_SYS
    6713D69C 7280 package body SYS.DBMS_AQADM_SYS
    66EB50B4 1 anonymous block
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    I have job_queue_processes set to 4 and aq_tm_processes set to 2.
    Has anyone seen this? Please help.
    Thanks,
    Atul

    May be a bit late to help the original posters, but just for reference, this looks very similar to the following described in Metalink:
    Bug 3033868 OERI[kwqidjqp0] from DBMS_AQADM_SYS.REGISTER_DRIVER
    This note gives a brief overview of bug 3033868.
    The content was last updated on: 20-JAN-2004
    Affects:
    Range of versions believed to be affected     Versions < 10.1.0.2
    Versions confirmed as being affected     
    * 9.0.1.4
    * 9.2.0.4
    Platforms affected     Generic (all / most platforms affected)
    Fixed:
    This issue is fixed in     
    * 9.2.0.5 (Server Patch Set)
    * 10.1.0.2 (Base Release)
    Edited by: Anthony Maslowski on Feb 5, 2010 1:26 PM

  • Problem in materialized view

    Hello everybody!!!
    I used the following script in order to see the automatic refresh of data contained in a materialized view.
    I used the following script in SCOTT schema:
    create materialized view log on emp
    with rowid (job,sal)
    including new values
    create materialized view emp_mv
    build immediate
    refresh fast on commit
    as
    select job , sum(sal) sum_sal
    from emp
    group by job
    The problem is that after i update the sal column (and commit it) of an employee and selecting from the emp_nv , I DO NOT see any difference , although the materialized view log has been updated successfully!!!
    Under which circumstances the materialized view would be updated as well?
    Simon.

    What is job_queue_processes set to on your system? Materialized view refreshes are generally done as background jobs, so that initializiation parameter needs to be set to a non-zero value.
    Justin

  • Materialized view with build deferred

    Hello,
    Do you have some idea why CREATE MATERIALIZED VIEW with BUILD DEFERRED option takes a lot of time? It's running 1 hour and not finish (Oracle 9.2).
    CREATE MATERIALIZED VIEW mv_users
    BUILD DEFERRED
    REFRESH COMPLETE
    NEXT SYSDATE+1
    WITH ROWID
    AS
    SELECT usr_id, usr_type, usr_active, usr_brn_id, usr_first_name,
    usr_last_name, usr_psl_rgn, usr_bp_id
    FROM users@db_link;
    Users table has 10 millions records.
    Edited by: user12111171 on 2011-09-16 13:28

    If the Job Queue is not enabled,  the CREATE cannot auto-schedule the refresh.  You need to have JOB_QUEUE_PROCESSES set to 1 or greater.
    It would seem that when you say "I have created job to refresh the materialized view everyday using dbms_refresh.refresh"  you haven't created a job using DBMS_JOB.SUBMIT   (which is what the CREATE MATERIALIZED VIEW would do "behind the scenes" --- you can then query DBA_JOBS or USER_JOBS to see the auto-submitted job).
    Hemant K Chitale

  • Job starts in un-scheduled time

    Hi All,
    I have created a job which runs fine for some days. But some times in runs in different time than what I scheduled. Here is the job script. It always suppose to run every day 5.00 PM.
    Please advice on the same.
    DECLARE
    X NUMBER;
    BEGIN
    SYS.DBMS_JOB.SUBMIT
    ( job => X
    ,what => 'mypackage.myproc(''/u000/app/oracle/myfol'', ''NL''||TO_CHAR(SYSDATE-1, ''YYMMDD'')||''.TXT'', TO_CHAR(SYSDATE, ''YYYYMMDD''));'
    ,next_date => to_date('10/04/2009 17:00:00','dd/mm/yyyy hh24:mi:ss')
    ,interval => 'TRUNC(SYSDATE + 1) +17/24'
    ,no_parse => TRUE
    SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    END;
    commit;

    But some times in runs in different time than what I scheduled.What time are you seeing it run? Are we talking about major changes (i.e. it's running at 3 AM)? Or problems where it is running a few minutes after 5 PM?
    Do you have other jobs? What is JOB_QUEUE_PROCESSES set to? Any chance there are more jobs that want to run at 5 than JOB_QUEUE_PROCESSES allows to run simultaneously at 5 so your job is getting queued?
    Is the clock on the server correct? Is the clock drifting over time?
    Justin

  • Replication - Single Master DB

    Hi
    I have a DB running on Server 1 and I want to create replication of all the Objects(existing Tables and any new table created) from Server-1 to Server-2.
    I want One-Way replication only and it should be SYNC with SERVER 1, So Whats the best Replication approach ? Whats the performance impact. Please let me know if there is any tutorial available.
    INFO
    1. DB on Server 1 has 125 Tables.
    2. The idea behind this that there are bunch of users who wants to query the DB , so we want to bring the same datbase running on SERVER 1 to another SERVER II , so that there want be any IO sharing between the PRODUCTION USER and QUERY USER.
    Thanks
    JR.

    1. FAST REFRESH ON COMMIT cannot be done across a DBLink. I've explained this a few times in this forum. An ON COMMIT operation is a push operation : thus when the source table is updated by DML it has to push the updates to the MV. Since an MV across databases is via a DBLink that allows the TARGET to connect to the SOURCE and query the SOURCE, the SOURCE has no way to push the updates.
    See http://hemantoracledba.blogspot.com/2008/06/mvs-with-refresh-on-commit-cannot-be.html
    2. When you create an MV with a Refresh Interval, Oracle automatically submits a Job in the DBA_JOBS queue. This job does the actual refresh. Query USER_JOBS in the target (SERVER-2) database to check the job. Most likely, your SERVER-2 database has "job_queue_processes" set to 0 which disables running of jobs. You need to issue an
    ALTER SYSTEM SET JOB_QUEUE_PROCESSES=1;in the target (SERVER-2) database so that it can run the Refresh job that will pull the updates.
    (You could set job_queue_processes higher if you are going to run multiple refresh's in parallel).
    On problem I foresee with your step to use MVs is that seperate MVs on individual tables will not synchronise data across the MVs.
    If a transaction in the source database updates two tables "A" and "B" and the target database server uses two seperate refresh's for the two MVs "MV_A" and "MV_B" then "MV_A" and "MV_B" will not be synchronised to the same point in time (ie transaction).
    You have to use Refresh Groups. MVs for all the the tables that could potentially participate in a transaction must be in the same Refresh Group and the Refresh job would be defined at the Refresh Group level . A problematic side effect of using Refresh Groups is that , in order to make the MVs transactionally consistent, Oracle must use DELETE and INSERT operations on all the MVs in the group. This will take time and generate significantly more UNDO and REDO in the Targer (SERVER-2) database.

  • APEX_PLSQL_JOB problem  - jobs ignored

    After successful creation of before header process it looks like the job gets ignored.
    This is the process code:
    declare
    l_job integer;
    begin
    l_job:=APEX_PLSQL_JOB.SUBMIT_PROCESS
    ('insert into t values (5);',sysdate,'nocomment');
    end;
    APEX_PLSQL_JOBS view has no entry of this job while "wwv_flow_jobs" table shows submitted job with system status "COMPLETE".
    Table T stays empty, and after the page load I get "success" message that I set up before on the process definition page.
    I am working on APEX 2.2 with job_queue_processes set to 10.
    No error messages in database alert log.
    What could go wrong ?
    Is there a way to purge wwv_flow_jobs table ( or APEX_PLSQL_JOBS view if entries exist) ?
    Regards, Matjaz

    See if the discussion at Background jobs helps

  • Oc4j scheduled jobs management

    We have an application deployed under oc4j server and that launches scheduled jobs.
    When we restart the oc4j server, old jobs are relaunched automatically which generate exception. Is this behavior logical? How we can remove these jobs.
    Thanks for collaboration

    Hi,
    Some diagnostic things to check
    - are there any crashes reported in the alert.log ?
    - are any jobs running
    select * from dba_scheduler_running_jobs;
    - is the job coordinator running
    on UNIX
    ps aux |grep cjq
    select program from v$session; -- look for CJQ
    - are job slaves running
    on UNIX
    ps aux |grep j0
    select program from v$session; -- look for J0*
    - on UNIX what process is consuming the CPU (check output of top and then grep the output of "ps aux" for the process ID)
    - what is MAX_JOB_SLAVE_PROCESSES set to ?
    select * from all_scheduler_global_attribute where ATTRIBUTE_NAME='MAX_JOB_SLAVE_PROCESSES';
    - what is job_queue_processes set to ?
    select value from v$parameter where lower(name)='job_queue_processes';
    - what is the status of all enabled jobs
    select job_name, state, next_run_date, last_start_date from dba_scheduler_jobs
    where state!='DISABLED';
    If scheduled jobs are not running and there are no jobs running, there is really nothing to "reset", it's just a matter of figuring out why jobs are not running. If you provide answers to the questions above, it should become clearer what is happening.
    One thing you can try is disabling all jobs and reenabling them one by one to see if they run.
    The purge_log job running more than a day is extremely unusual, but it shouldn't step on itself as it will just skip the next run if it is already running.
    Hope this helps,
    Ravi.

  • Help needed for hash_area_size setting for Datawarehouse environment

    We have an Oracle 10g Datawarehousing environment , running on 3 - node RAC
    with 16 GB RAM & 4 CPUs each and roughly we have 200 users and night jobs running on this D/W .
    We find that query performance of all ETL Processes & joins are quite slow .
    How much should we increase the value of hash_area_size parameter for this Datawarehouse environment ? This is a Production database, with Oracle Database 10g Enterprise Edition Release 10.1.0.5.0.
    We use OWB 10g Tool for this D/W and we need to change the hash_area_size to increase the performance of the ETL Processes.
    This is the Oracle init parameter settings used, as shown below : -
    Kindly suggest ,
    Thanks & best regards ,
    ===========================================================
         ORBIT
    __db_cache_size     1073741824
    __java_pool_size     67108864
    __large_pool_size     318767104
    __shared_pool_size     1744830464
    optimizercost_based_transformation     OFF
    active_instance_count     
    aq_tm_processes     1
    archive_lag_target     0
    asm_diskgroups     
    asm_diskstring     
    asm_power_limit     1
    audit_file_dest     /dboracle/orabase/product/10.1.0/rdbms/audit
    audit_sys_operations     FALSE
    audit_trail     NONE
    background_core_dump     partial
    background_dump_dest     /dborafiles/orbit/ORBIT01/admin/bdump
    backup_tape_io_slaves     TRUE
    bitmap_merge_area_size     1048576
    blank_trimming     FALSE
    buffer_pool_keep     
    buffer_pool_recycle     
    circuits     
    cluster_database     TRUE
    cluster_database_instances     3
    cluster_interconnects     
    commit_point_strength     1
    compatible     10.1.0
    control_file_record_keep_time     90
    control_files     #NAME?
    core_dump_dest     /dborafiles/orbit/ORBIT01/admin/cdump
    cpu_count     4
    create_bitmap_area_size     8388608
    create_stored_outlines     
    cursor_sharing     EXACT
    cursor_space_for_time     FALSE
    db_16k_cache_size     0
    db_2k_cache_size     0
    db_32k_cache_size     0
    db_4k_cache_size     0
    db_8k_cache_size     0
    db_block_buffers     0
    db_block_checking     FALSE
    db_block_checksum     TRUE
    db_block_size     8192
    db_cache_advice     ON
    db_cache_size     1073741824
    db_create_file_dest     #NAME?
    db_create_online_log_dest_1     #NAME?
    db_create_online_log_dest_2     #NAME?
    db_create_online_log_dest_3     
    db_create_online_log_dest_4     
    db_create_online_log_dest_5     
    db_domain     
    db_file_multiblock_read_count     64
    db_file_name_convert     
    db_files     999
    db_flashback_retention_target     1440
    db_keep_cache_size     0
    db_name     ORBIT
    db_recovery_file_dest     #NAME?
    db_recovery_file_dest_size     2.62144E+11
    db_recycle_cache_size     0
    db_unique_name     ORBIT
    db_writer_processes     1
    dbwr_io_slaves     0
    ddl_wait_for_locks     FALSE
    dg_broker_config_file1     /dboracle/orabase/product/10.1.0/dbs/dr1ORBIT.dat
    dg_broker_config_file2     /dboracle/orabase/product/10.1.0/dbs/dr2ORBIT.dat
    dg_broker_start     FALSE
    disk_asynch_io     TRUE
    dispatchers     
    distributed_lock_timeout     60
    dml_locks     9700
    drs_start     FALSE
    enqueue_resources     10719
    event     
    fal_client     
    fal_server     
    fast_start_io_target     0
    fast_start_mttr_target     0
    fast_start_parallel_rollback     LOW
    file_mapping     FALSE
    fileio_network_adapters     
    filesystemio_options     asynch
    fixed_date     
    gc_files_to_locks     
    gcs_server_processes     2
    global_context_pool_size     
    global_names     FALSE
    hash_area_size     131072
    hi_shared_memory_address     0
    hpux_sched_noage     0
    hs_autoregister     TRUE
    ifile     
    instance_groups     
    instance_name     ORBIT01
    instance_number     1
    instance_type     RDBMS
    java_max_sessionspace_size     0
    java_pool_size     67108864
    java_soft_sessionspace_limit     0
    job_queue_processes     10
    large_pool_size     318767104
    ldap_directory_access     NONE
    license_max_sessions     0
    license_max_users     0
    license_sessions_warning     0
    local_listener     
    lock_name_space     
    lock_sga     FALSE
    log_archive_config     
    log_archive_dest     
    log_archive_dest_1     LOCATION=+ORBT_A06635_DATA1_ASM/ORBIT/ARCHIVELOG/
    log_archive_dest_10     
    log_archive_dest_2     
    log_archive_dest_3     
    log_archive_dest_4     
    log_archive_dest_5     
    log_archive_dest_6     
    log_archive_dest_7     
    log_archive_dest_8     
    log_archive_dest_9     
    log_archive_dest_state_1     enable
    log_archive_dest_state_10     enable
    log_archive_dest_state_2     enable
    log_archive_dest_state_3     enable
    log_archive_dest_state_4     enable
    log_archive_dest_state_5     enable
    log_archive_dest_state_6     enable
    log_archive_dest_state_7     enable
    log_archive_dest_state_8     enable
    log_archive_dest_state_9     enable
    log_archive_duplex_dest     
    log_archive_format     %t_%s_%r.arc
    log_archive_local_first     TRUE
    log_archive_max_processes     2
    log_archive_min_succeed_dest     1
    log_archive_start     FALSE
    log_archive_trace     0
    log_buffer     1167360
    log_checkpoint_interval     0
    log_checkpoint_timeout     1800
    log_checkpoints_to_alert     FALSE
    log_file_name_convert     
    logmnr_max_persistent_sessions     1
    max_commit_propagation_delay     700
    max_dispatchers     
    max_dump_file_size     UNLIMITED
    max_enabled_roles     150
    max_shared_servers     
    nls_calendar     
    nls_comp     
    nls_currency     #
    nls_date_format     DD-MON-RRRR
    nls_date_language     ENGLISH
    nls_dual_currency     ?
    nls_iso_currency     UNITED KINGDOM
    nls_language     ENGLISH
    nls_length_semantics     BYTE
    nls_nchar_conv_excp     FALSE
    nls_numeric_characters     
    nls_sort     
    nls_territory     UNITED KINGDOM
    nls_time_format     HH24.MI.SSXFF
    nls_time_tz_format     HH24.MI.SSXFF TZR
    nls_timestamp_format     DD-MON-RR HH24.MI.SSXFF
    nls_timestamp_tz_format     DD-MON-RR HH24.MI.SSXFF TZR
    O7_DICTIONARY_ACCESSIBILITY     FALSE
    object_cache_max_size_percent     10
    object_cache_optimal_size     102400
    olap_page_pool_size     0
    open_cursors     1024
    open_links     4
    open_links_per_instance     4
    optimizer_dynamic_sampling     2
    optimizer_features_enable     10.1.0.5
    optimizer_index_caching     0
    optimizer_index_cost_adj     100
    optimizer_mode     ALL_ROWS
    os_authent_prefix     ops$
    os_roles     FALSE
    parallel_adaptive_multi_user     TRUE
    parallel_automatic_tuning     TRUE
    parallel_execution_message_size     4096
    parallel_instance_group     
    parallel_max_servers     80
    parallel_min_percent     0
    parallel_min_servers     0
    parallel_server     TRUE
    parallel_server_instances     3
    parallel_threads_per_cpu     2
    pga_aggregate_target     8589934592
    plsql_code_type     INTERPRETED
    plsql_compiler_flags     INTERPRETED
    plsql_debug     FALSE
    plsql_native_library_dir     
    plsql_native_library_subdir_count     0
    plsql_optimize_level     2
    plsql_v2_compatibility     FALSE
    plsql_warnings     DISABLE:ALL
    pre_page_sga     FALSE
    processes     600
    query_rewrite_enabled     TRUE
    query_rewrite_integrity     enforced
    rdbms_server_dn     
    read_only_open_delayed     FALSE
    recovery_parallelism     0
    remote_archive_enable     TRUE
    remote_dependencies_mode     TIMESTAMP
    remote_listener     
    remote_login_passwordfile     EXCLUSIVE
    remote_os_authent     FALSE
    remote_os_roles     FALSE
    replication_dependency_tracking     TRUE
    resource_limit     FALSE
    resource_manager_plan     
    resumable_timeout     0
    rollback_segments     
    serial_reuse     disable
    service_names     ORBIT
    session_cached_cursors     0
    session_max_open_files     10
    sessions     2205
    sga_max_size     3221225472
    sga_target     3221225472
    shadow_core_dump     partial
    shared_memory_address     0
    shared_pool_reserved_size     102760448
    shared_pool_size     318767104
    shared_server_sessions     
    shared_servers     0
    skip_unusable_indexes     TRUE
    smtp_out_server     
    sort_area_retained_size     0
    sort_area_size     65536
    sp_name     ORBIT
    spfile     #NAME?
    sql_trace     FALSE
    sql_version     NATIVE
    sql92_security     FALSE
    sqltune_category     DEFAULT
    standby_archive_dest     ?/dbs/arch
    standby_file_management     MANUAL
    star_transformation_enabled     TRUE
    statistics_level     TYPICAL
    streams_pool_size     0
    tape_asynch_io     TRUE
    thread     1
    timed_os_statistics     0
    timed_statistics     TRUE
    trace_enabled     TRUE
    tracefile_identifier     
    transactions     2425
    transactions_per_rollback_segment     5
    undo_management     AUTO
    undo_retention     7200
    undo_tablespace     UNDOTBS1
    use_indirect_data_buffers     FALSE
    user_dump_dest     /dborafiles/orbit/ORBIT01/admin/udump
    utl_file_dir     /orbit_serial/oracle/utl_out
    workarea_size_policy     AUTO

    The parameters are already unset in the environment, but do show up in v$parameter, much like shared_pool_size is visible in v$parameter despite only sga_target being set.
    SQL> show parameter sort
    NAME TYPE VALUE
    sortelimination_cost_ratio integer 5
    nls_sort string binary
    sort_area_retained_size integer 0
    sort_area_size integer 65536
    SQL> show parameter hash
    NAME TYPE VALUE
    hash_area_size integer 131072
    SQL> exit
    Only set hash_area_size and sort_area_size should only be set when not using automatic undo, which is not supported in EBS databases.
    Database Initialization Parameters for Oracle Applications 11i
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=216205.1

  • Precautions i need to take when changing the Character set

    Hi,
    ORACLE VERSION: 10G Release 1 (10.1.0.3.0)
    I am going to change my database's characterset from AL32UTF8 to WE8MSWIN1252 character set and AL16UTF16 NCHAR character set. So i have few questions for you.
    1. What is the difference between Character Set and National Character set? Do i have to set both?
    2. What are precautions that i need to take while changing the characterset?
    3. What are JOB_QUEUE_PROCESSES and AQ_TM_PROCESSES parameters in Plain English? Why do i have to set these parameters to 0 as mentioned in this post below.
    Storing Chinese in Oracle Database

    1) The database character set controls (and specifies) the character set of CHAR & VARCHAR2 columns. The national character set controls the character set of NCHAR & NVARCHAR2 columns.
    2) Please make sure that you read the section of the Globalization manual that discusses character set migration. In particular, going from UTF-8 to Windows-1252 is going to require a bit more work since the latter is a subset (and not a strict binary subset) of the former.
    Justin

  • ORA-12709: error while loading create database character set after upgrade

    Dear All
    i m getting ORA-12709: error while loading create database character set, After upgraded the database from 10.2.0.3 to 11.2.0.3 in ebusiness suit env.
    current application version 12.0.6
    please help me to resolve it.
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 1.2831E+10 bytes
    Fixed Size 2171296 bytes
    Variable Size 2650807904 bytes
    Database Buffers 1.0133E+10 bytes
    Redo Buffers 44785664 bytes
    ORA-12709: error while loading create database character set
    -bash-3.00$ echo $ORA_NLS10
    /u01/oracle/PROD/db/teche_st/11.2.0/nls/data/9idata
    export ORACLE_BASE=/u01/oracle
    export ORACLE_HOME=/u01/oracle/PROD/db/tech_st/11.2.0
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/perl/bin:$PATH
    export PERL5LIB=$ORACLE_HOME/perl/lib/5.10.0:$ORACLE_HOME/perl/site_perl/5.10.0
    export ORA_NLS10=/u01/oracle/PROD/db/teche_st/11.2.0/nls/data/9idata
    export ORACLE_SID=PROD
    -bash-3.00$ pwd
    /u01/oracle/PROD/db/tech_st/11.2.0/nls/data/9idata
    -bash-3.00$ ls -lh |more
    total 56912
    -rw-r--r-- 1 oracle oinstall 951 Jan 15 16:05 lx00001.nlb
    -rw-r--r-- 1 oracle oinstall 957 Jan 15 16:05 lx00002.nlb
    -rw-r--r-- 1 oracle oinstall 959 Jan 15 16:05 lx00003.nlb
    -rw-r--r-- 1 oracle oinstall 984 Jan 15 16:05 lx00004.nlb
    -rw-r--r-- 1 oracle oinstall 968 Jan 15 16:05 lx00005.nlb
    -rw-r--r-- 1 oracle oinstall 962 Jan 15 16:05 lx00006.nlb
    -rw-r--r-- 1 oracle oinstall 960 Jan 15 16:05 lx00007.nlb
    -rw-r--r-- 1 oracle oinstall 950 Jan 15 16:05 lx00008.nlb
    -rw-r--r-- 1 oracle oinstall 940 Jan 15 16:05 lx00009.nlb
    -rw-r--r-- 1 oracle oinstall 939 Jan 15 16:05 lx0000a.nlb
    -rw-r--r-- 1 oracle oinstall 1006 Jan 15 16:05 lx0000b.nlb
    -rw-r--r-- 1 oracle oinstall 1008 Jan 15 16:05 lx0000c.nlb
    -rw-r--r-- 1 oracle oinstall 998 Jan 15 16:05 lx0000d.nlb
    -rw-r--r-- 1 oracle oinstall 1005 Jan 15 16:05 lx0000e.nlb
    -rw-r--r-- 1 oracle oinstall 926 Jan 15 16:05 lx0000f.nlb
    -rw-r--r-- 1 oracle oinstall 1.0K Jan 15 16:05 lx00010.nlb
    -rw-r--r-- 1 oracle oinstall 958 Jan 15 16:05 lx00011.nlb
    -rw-r--r-- 1 oracle oinstall 956 Jan 15 16:05 lx00012.nlb
    -rw-r--r-- 1 oracle oinstall 1005 Jan 15 16:05 lx00013.nlb
    -rw-r--r-- 1 oracle oinstall 970 Jan 15 16:05 lx00014.nlb
    -rw-r--r-- 1 oracle oinstall 950 Jan 15 16:05 lx00015.nlb
    -rw-r--r-- 1 oracle oinstall 1.0K Jan 15 16:05 lx00016.nlb
    -rw-r--r-- 1 oracle oinstall 957 Jan 15 16:05 lx00017.nlb
    -rw-r--r-- 1 oracle oinstall 932 Jan 15 16:05 lx00018.nlb
    -rw-r--r-- 1 oracle oinstall 932 Jan 15 16:05 lx00019.nlb
    -rw-r--r-- 1 oracle oinstall 951 Jan 15 16:05 lx0001a.nlb
    -rw-r--r-- 1 oracle oinstall 944 Jan 15 16:05 lx0001b.nlb
    -rw-r--r-- 1 oracle oinstall 953 Jan 15 16:05 lx0001c.nlb
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    ORACLE_HOME = /u01/oracle/PROD/db/tech_st/11.2.0
    System name: SunOS
    Node name: proddb3.zakathouse.org
    Release: 5.10
    Version: Generic_147440-19
    Machine: sun4u
    Using parameter settings in server-side spfile /u01/oracle/PROD/db/tech_st/11.2.0/dbs/spfilePROD.ora
    System parameters with non-default values:
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    event = ""
    shared_pool_size = 416M
    shared_pool_reserved_size= 40M
    nls_language = "american"
    nls_territory = "america"
    nls_sort = "binary"
    nls_date_format = "DD-MON-RR"
    nls_numeric_characters = ".,"
    nls_comp = "binary"
    nls_length_semantics = "BYTE"
    memory_target = 11G
    memory_max_target = 12G
    control_files = "/u01/oracle/PROD/db/apps_st/data/cntrl01.dbf"
    control_files = "/u01/oracle/PROD/db/tech_st/10.2.0/dbs/cntrl02.dbf"
    control_files = "/u01/oracle/PROD/db/apps_st/data/cntrl03.dbf"
    db_block_checksum = "TRUE"
    db_block_size = 8192
    compatible = "11.2.0.0.0"
    log_archive_dest_1 = "LOCATION=/u01/oracle/PROD/db/apps_st/data/archive"
    log_archive_format = "%t_%s_%r.dbf"
    log_buffer = 14278656
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    db_file_multiblock_read_count= 8
    db_recovery_file_dest = "/u01/oracle/fast_recovery_area"
    db_recovery_file_dest_size= 14726M
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = "AUTO"
    undo_tablespace = "APPS_UNDOTS1"
    db_block_checking = "FALSE"
    session_cached_cursors = 500
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/u01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound"
    utl_file_dir = "/u01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound/PROD_proddb3"
    utl_file_dir = "/usr/tmp"
    plsql_code_type = "INTERPRETED"
    plsql_optimize_level = 2
    job_queue_processes = 2
    cursor_sharing = "EXACT"
    parallel_min_servers = 0
    parallel_max_servers = 8
    core_dump_dest = "/u01/oracle/PROD/db/tech_st/10.2.0/admin/PROD_proddb3/cdump"
    audit_file_dest = "/u01/oracle/admin/PROD/adump"
    db_name = "PROD"
    open_cursors = 600
    pga_aggregate_target = 1G
    workarea_size_policy = "AUTO"
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4M
    diagnostic_dest = "/u01/oracle"
    max_dump_file_size = "20480"
    Tue Jan 15 16:16:02 2013
    PMON started with pid=2, OS id=18608
    Tue Jan 15 16:16:02 2013
    PSP0 started with pid=3, OS id=18610
    Tue Jan 15 16:16:03 2013
    VKTM started with pid=4, OS id=18612 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Tue Jan 15 16:16:03 2013
    GEN0 started with pid=5, OS id=18616
    Tue Jan 15 16:16:03 2013
    DIAG started with pid=6, OS id=18618
    Tue Jan 15 16:16:03 2013
    DBRM started with pid=7, OS id=18620
    Tue Jan 15 16:16:03 2013
    DIA0 started with pid=8, OS id=18622
    Tue Jan 15 16:16:03 2013
    MMAN started with pid=9, OS id=18624
    Tue Jan 15 16:16:03 2013
    DBW0 started with pid=10, OS id=18626
    Tue Jan 15 16:16:03 2013
    LGWR started with pid=11, OS id=18628
    Tue Jan 15 16:16:03 2013
    CKPT started with pid=12, OS id=18630
    Tue Jan 15 16:16:03 2013
    SMON started with pid=13, OS id=18632
    Tue Jan 15 16:16:04 2013
    RECO started with pid=14, OS id=18634
    Tue Jan 15 16:16:04 2013
    MMON started with pid=15, OS id=18636
    Tue Jan 15 16:16:04 2013
    MMNL started with pid=16, OS id=18638
    DISM started, OS id=18640
    ORACLE_BASE from environment = /u01/oracle
    Tue Jan 15 16:16:08 2013
    ALTER DATABASE MOUNT
    ORA-12709 signalled during: ALTER DATABASE MOUNT...

    ORA-12709 signalled during: ALTER DATABASE MOUNT...Do you have any trace files generated at the time you get this error?
    Please see these docs.
    ORA-12709: WHILE STARTING THE DATABASE [ID 1076156.6]
    Upgrading from 9i to 10gR2 Fails With ORA-12709 : Error While Loading Create Database Character Set [ID 732861.1]
    Ora-12709 While Trying To Start The Database [ID 311035.1]
    ORA-12709 when Mounting the Database [ID 160478.1]
    How to Move From One Database Character Set to Another at the Database Level [ID 1059300.6]
    Thanks,
    Hussein

  • Oracle 11g Installation How to select Database Character Set

    Hi,
    I am Installing oracle 11g R2. After installation I had verified the character set it was AL16UTF16 but I wants to set AL32UTF8 charater set at the time of oracle installation only. I can't see the character set setting opetion at the time of installation because I am selecting the installation option " Install database softerware only" and after installation of oracle software manually I am creating the database. Please help me how can I set the character set at the time of oracle installation or at the time of database creation.
    My question is-
    How can I set the AL32UTF8 character set in above scenario?
    Why It is showing AL16UTF16 character set even I did not define any thing?

    But is there any choice to set the NLS_CHARACTERSET at the time of manually database creation. Actually For creating the database i am using one shell script for seting the parameter values in init.ora file so can I set the parameter at that level(at the time of creating init.ora using manually database creation). like
    ## Original init.ora file created by manual database creation tool on ${DATE}.
    *.aq_tm_processes=0
    *.background_dump_dest='$ORACLE_BASE/admin/$ORACLE_SID/bdump'
    *.compatible='10.2.0'
    *.control_files='/$db_file_loc/oradata/$ORACLE_SID/control01.ctl','/$db_file_loc/oradata/$ORACLE_SID/control02.ctl','/$db_file_loc/oradata/$ORACLE_SID/control03.ctl'
    *.core_dump_dest='$ORACLE_BASE/admin/$ORACLE_SID/cdump'
    *.db_block_size=8192
    *.db_cache_size=104857600
    *.db_domain='$server_name'
    *.db_file_multiblock_read_count=8
    *.db_name='$ORACLE_SID'
    *.fast_start_mttr_target=300
    *.instance_name='$ORACLE_SID'
    *.java_pool_size=16777216
    *.job_queue_processes=4
    *.large_pool_size=16777216
    *.log_archive_dest='/u05/oradata/$ORACLE_SID'
    *.log_archive_format='$ORACLE_SID_%s_%t_%r.arc'
    *.olap_page_pool_size=4194304
    *.open_cursors=500
    *.optimizer_index_cost_adj=50
    *.pga_aggregate_target=536870912
    *.processes=1500
    *.query_rewrite_enabled='TRUE'
    *.remote_login_passwordfile='EXCLUSIVE'
    *.shared_pool_size=83886080
    *.sort_area_size=1048576
    *.sga_max_size=1048576000
    *.sga_target=536870912
    *.star_transformation_enabled='TRUE'
    *.timed_statistics=TRUE
    *.undo_management='AUTO'
    *.undo_retention=10800
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='$ORACLE_BASE/admin/$ORACLE_SID/udump'
    *.utl_file_dir='/export/home/oracle/utlfiles'
    **.nls_characterset='AL32UTF8'*
    EOF
    Is it correct?

  • How to set maximum number of jobs in oracle

    Could pls tell explain me about how to set maximum number of jobs in oracle....
    Regd,
    Mahi

    I don't think there is any limit on number of jobs that can be submitted to Oracle. However, there is a limit on the number of processes that would execute those jobs (governed by JOB_QUEUE_PROCESSES).
    Message was edited by:
    Satish Kandi
    Typo corrected.

  • Job_queue_processes

    Hi friends
    I have a BD that it has created several jobs, 5 of which they execute themselves to 1:00am and the parameter job_queue_processes is 1. I see in DBA_JOBS view and apparently executes all jobs without problems and in simultaneous form.
    i dont understand that because i read in another web page that for my case, for example, the parameter must have a value greater to 5, than are jobs that is executed in simultaneous.
    Anyone can explain me?
    ...and i read the oracle documentation about that, that is the reason for my question.
    thanks in advance.
    Cesar

    Hi Cesar,
    Can Anyone can explain me? Probably not, but I'll try!
    Me, I just set it to a large-enough value and leave it be . . .
    Dr. Hall has these notes on setting job_queue_processes from his book "Oracle Job Scheduling":
    http://www.remote-dba.cc/t_jobscheduling_18_Oracle9i_scheduler_.htm
    the job_queue_processes parameter sets an upper limit for the number of job slaves that can be spawned to execute jobs. The value assigned must be between 0-1000; with zero being the default.
    The job coordinator spawns as many job slaves (j000 to j999) as are needed to execute the outstanding jobs, making the job_queue_processes parameter redundant in Oracle 10g. A job slave gathers metadata from the scheduler tables to enable it to execute a job. Upon completion of a job, the slave process updates any relevant information in the job table, inserts data into the job run history and requests another job from the job coordinator. If a job is not available, the job slave sleeps until there is work to do. The job coordinator periodically terminates idle job slaves to reduce the slave pool.
    Hope this helps. . .
    Don Burleson
    Oracle Press author
    Author of “Oracle Tuning: The Definitive Reference”
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

Maybe you are looking for

  • Part Number for Bluetooth 2.0 module

    Does anyone have the part number for a Bluetooth 2.0 module for the Mac Pro? I want to make sure I don't end up with the older version 1.1. The part number I've been told to use is Model A1115, but one service site says that's a version 1.1 module, w

  • Line item text field from MIGO are not copied into FI line item text field

    Hi all on SCN, please, I need a help. It was created as required by the user a field status group with the text field required. This field status group was assigned to some accounts, in order to make my unit tests. u2003 In development envirionment w

  • Sound & Graphics Drivers not working for Qosmio F15R

    I was granted this Laptop with nothing more than AC Adapter. I didn't need the information contained in it and didn't want to deal with its configuration issues either, so I started planning formatting it. Looking for model number label at the bottom

  • List of properties by form element

    Hi, before i try and re-invent the wheel, does anyone have a list of the attributes, for each element in a forms node. ie Form has properties Name Subclass Information Comments Title Console Window Menu Module etc Trigger has Properties Name Subclass

  • Newbie problem: EJB Manager password

    Hi, I have installed weblogic 6.1 server on unix. I haven't made any changes to anything whatsoever. When I start, say the default server, I get this: <Sep 29, 2004 9:20:51 PM EDT> <Notice> <WebLogicServer> <ListenThread listening on port 7001> <Sep