Error with dbms_scheduler.create_job

Hi all

I am trying to run CREATE_JOB, get the error below.
I gess I have specified the valid month, but could not solve the problem. What could be the error?
   SQL> BEGIN
  2      dbms_scheduler.create_job(
  3              job_name => 'DEMO_STUDENT_TOT',
  4              job_type => 'PLSQL_BLOCK',
  5              job_action => 'begin student_sum; end; ',
  6              start_date => '7/14/2009 7:40 AM',
  7              repeat_interval => 'FREQ=DAILY',
  8              enabled => TRUE,
  9              comments => 'Demo for job schedule.');
 10  END;
 11  /
BEGIN
*
ERROR at line 1:
ORA-01843: not a valid month
ORA-06512: at line 2
   
Thank you

Refer to the documentation: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sched.htm#i1000363

You have:

start_date => '7/14/2009 7:40 AM',

but the documentation says start_date is a timestamp.

You must use to_timestamp()...

Tags: Database

Similar Questions

  • Error with DBMS_SCHEDULER

    Version: 10.2.0.4
    Try to schedule a task of stats gather for schema SCOTT.
    SQL > BEGIN
      2    -- Job defined to fix performance issue with SCOTT 
      3    DBMS_SCHEDULER.create_job (
      4      job_name        => 'Gather stats for SCOTT',
      5      job_type        => 'PLSQL_BLOCK',
      6      job_action      => 'BEGIN DBMS_STATS.GATHER_SCHEMA_STATS (''SCOTT'', 'DBMS_STATS.AUTO_SAMPLE_SIZE'); END;',
      7      start_date      => SYSDATE,
      8      repeat_interval => 'freq=DAILY; BYHOUR=8',
      9      end_date        => NULL,
     10      enabled         => TRUE,
     11      comments        => 'Gather stats job for SCOTT');
     12  end;
     13  /
        job_action      => 'BEGIN DBMS_STATS.GATHER_SCHEMA_STATS (''SCOTT'', 'DBMS_STATS.AUTO_SAMPLE_SIZE
                                                                              *
    ERROR at line 6:
    ORA-06550: line 6, column 75:
    PLS-00103: Encountered the symbol "DBMS_STATS" when expecting one of the following:
    ) , * & = - + < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
    LIKE4_ LIKEC_ between || multiset member SUBMULTISET_
    I know this has something to do with the quotes surrounding DBMS_STATS. AUTO_SAMPLE_SIZE. But I can't seem to solve this problem.

    The shares of employment must be a string. You don't give a complete chain. You have two easy ways to change that. Here is a version

    not tested

    SQL > BEGIN
      2    -- Job defined to fix performance issue with SCOTT
      3    DBMS_SCHEDULER.create_job (
      4      job_name        => 'Gather stats for SCOTT',
      5      job_type        => 'PLSQL_BLOCK',
      6      job_action      => 'BEGIN DBMS_STATS.GATHER_SCHEMA_STATS (''SCOTT''); END;',
      7      start_date      => SYSDATE,
      8      repeat_interval => 'freq=DAILY; BYHOUR=8',
      9      end_date        => NULL,
     10      enabled         => TRUE,
     11      comments        => 'Gather stats job for SCOTT');
     12  end;
     13  / 
    

    Given that AUTO_SAMPLE_SIZE is the default value, you can simply remove this parameter.

    or add you it to the chain

    SQL > BEGIN
    ...
      6      job_action      => 'BEGIN DBMS_STATS.GATHER_SCHEMA_STATS (''SCOTT'', DBMS_STATS.AUTO_SAMPLE_SIZE); END;',
    ...
    

    or add you it as a number instead of the packaged variable.

    not yet tested

    SQL > BEGIN
    ...
      6      job_action      => 'BEGIN DBMS_STATS.GATHER_SCHEMA_STATS (''SCOTT'','||to_char(DBMS_STATS.AUTO_SAMPLE_SIZE)||'); END;',
    ...
    

    Published by: Sven w. on July 27, 2010 14:14

  • planning using the tasks dbms_scheduler.create_job

    Hi all experts,

    I am really grateful to now take you for your replies, a look at this, I created a job with 'dbms_scheduler.create_job' and blow is the result of the view 'dba_schduler_jobs' why it shows "0" run_count... I went through everything as many links like:

    Answers to "why my jobs are not running?

    and applied and checked all the settings, I use oracle 10.2.0.1.0 on windows server 2003 32-bit
    SQL> BEGIN
         DBMS_SCHEDULER.CREATE_JOB (
             job_name => 'clouser'
            ,job_type => 'PLSQL_BLOCK'
         ,job_action => 'begin package.procedure("po_closure"); end;'
         ,start_date => to_date('17-04-2009 22:00:00', 'dd-mm-yyyy hh24:mi:ss')
         ,repeat_interval => 'FREQ=DAILY;byminute=10'
         ,enabled => TRUE
         ,comments => 'op closure everyday at 11PM'
    );
    END;
    / 
    PL/SQL procedure successfully completed.
     
    SQL> select owner,job_name name,run_count run,start_date
      2  from dba_scheduler_jobs
      3  where owner='FINANCEDEV';
     
    OWNER                          NAME                                  RUN
    ------------------------------ ------------------------------ ----------
    START_DATE
    ---------------------------------------------------------------------------
    FINANCEDEV                     CLOUSER                                 0
    17-APR-09 02.45.10.000000 PM +05:30
     
    FINANCEDEV                     CLOUSER_MAIN                            0
    18-APR-09 10.25.00.000000 AM +05:30
     
    FINANCEDEV                     CLOUSER_MAIN1                           0
    18-APR-09 10.45.00.000000 AM +05:30
     
     
    OWNER                          NAME                                  RUN
    ------------------------------ ------------------------------ ----------
    START_DATE
    ---------------------------------------------------------------------------
    FINANCEDEV                     CLOUSER_MAIN4                           0
    18-APR-09 10.45.00.000000 AM +05:30
     
    FINANCEDEV                     CLOUSER_MAIN5                           0
    18-APR-09 10.43.00.000000 AM +05:30
    the time I planned has already passed and I check it again and again, but no luck, can you please explain why is it so?

    Thanks in advance

    Thanks and greetings
    VD

    Published by: vikrant dixit on April 17, 2009 22:33

    Vikrant,

    You must set your procedure or package that you call job_action and see why it's a failure. Make sure that you can perform your procedure with no problems

    Using the suite perform your procedure and see if it ends correctly and if not solve the problem and use job I posted in my previous post.

    declare
    begin
       input_value varchar2(...) := 'some value';
       schema_name.package_name.procedure_name(input_value);
    end;
    

    Hope helps thie
    Concerning

  • Problem with DBMS_SCHEDULER. CREATE_JOB in the package

    Hi all

    I tried the following with DBMS_SCHEDULER example. CREATE_JOB.
    This is just an example, I tried to use the DBMS_SCHEDULER package. Exception block is also not have good standards, because I just want to understand that the package
    create table test_test1 (process_id number  ,name varchar2(22) )
    
    CREATE OR REPLACE PACKAGE PKG_SCHEDULER_TEST
    IS
       PROCEDURE proc_test (v_process_id NUMBER, v_name VARCHAR2);
    
       PROCEDURE DATA_LOAD (v_process_id NUMBER, v_name VARCHAR2);
    END PKG_SCHEDULER_TEST;
    
    
    
    CREATE OR REPLACE PACKAGE BODY PKG_SCHEDULER_TEST
    IS
       PROCEDURE Data_load (v_process_id NUMBER, v_name VARCHAR2)
       IS
       BEGIN
          DBMS_OUTPUT.PUT_LINE ('Data_Load Started ');
    
          INSERT INTO test_test1 (process_id, name)
               VALUES (v_process_id, v_name);
    
          COMMIT;
       EXCEPTION
          WHEN OTHERS
          THEN
             DBMS_OUTPUT.put_line ('sp_Data_load error');
       END;
    
    
       PROCEDURE proc_test (v_process_id NUMBER, v_name VARCHAR2)
       IS
       BEGIN
          DBMS_OUTPUT.PUT_LINE ('PROC_TEST STARTED ');
    
          FOR i IN 1 .. 10
          LOOP
             DBMS_OUTPUT.PUT_LINE ('Inside loop started');
             DBMS_SCHEDULER.CREATE_JOB (
                JOB_NAME          => 'Scheduler' || i,
                JOB_TYPE          => 'PLSQL_BLOCK',
                JOB_ACTION        => 'begin
                                               PKG_SCHEDULER_TEST.DATA_LOAD ('
                                              || v_process_id
                                              || ','
                                              || ''''
                                              || v_name
                                              || '); end;',
                START_DATE        => NULL,
                REPEAT_INTERVAL   => NULL,
                END_DATE          => NULL,
                ENABLED           => TRUE,
                COMMENTS          => ' Comments');
          END LOOP;
    
          DBMS_OUTPUT.PUT_LINE (' Lood ended');
       EXCEPTION
          WHEN OTHERS
          THEN
             DBMS_OUTPUT.put_line (
                'proc_test error' || SQLCODE || ',' || SQLERRM);
       END;
    END PKG_SCHEDULER_TEST;
    The above package was created successfully, but when I tried to run this package the following is the output
    SQL> set serverout on
    SQL> exec PKG_SCHEDULER_TEST.proc_test(1,'A
    PROC_TEST STARTED
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Inside loop started
    Lood ended
    
    PL/SQL procedure successfully completed.
    The question now is after the execution of this package, that the data is not loaded in the TEST_TEST1 table and no statement of output which is located in the Data_load procedure

    Please guide me where I am doing wrong

    Thank you

    Take a close look at your JOB_ACTION

                JOB_ACTION        => 'begin
                                               PKG_SCHEDULER_TEST.DATA_LOAD ('
                                              || v_process_id
                                              || ','
                                              || ''''
                                              || v_name
                                              || '); end;',
    

    It will come out with something like

    begin
    PKG_SCHEDULER_TEST.DATA_LOAD(1,'name); end;
    

    See the problem?

  • dbms_scheduler.create_job

    Hello
    I have a stored procedure in the scheme of mauser.
    and grant execute this DS to ERPUSER,
    When connect you to oracle in sqlplus with ERPUSER (no mauser) a runtime error see the
    Help, please.


    Start
    dbms_scheduler.create_job
    (
    job_name = > 'Send_Data_To_HR_Tables ',.
    schedule_name = > "EVERY_4_MINS"
    job_type = > 'procedure_stockee ',.
    job_action = > ' MAUSER. SENDDATATOHRTABLES',.
    enabled = > true,
    Comments = > 'send my tabales data to HR tables. "
    );
    end;

    "ORA-27481: ' ERPUSER. SEND_DATA_TO_HR_TABLES' has an invalid schedule
    "ORA-27476: ' ERPUSER. EVERY_4_MINS' does not exist
    ORA-06512: at "SYS." DBMS_ISCHED", line 99
    ORA-06512: at "SYS." DBMS_SCHEDULER', line 348
    ORA-06512: at line 3 level



    Thank you and best regards
    allahmorad

    Try using schedule_name or repeat_interval settings but not both:

    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL>
    SQL> show user;
    USER is "SCOTT"
    SQL>
    SQL> create procedure p
      2  as
      3  begin
      4  insert into times values(sysdate);
      5  end;
      6  /
    
    Procedure created.
    
    SQL> show errors
    No errors.
    SQL>
    SQL> begin
      2  dbms_scheduler.create_schedule(
      3  schedule_name => 'every_4_mn',
      4  start_date => systimestamp,
      5  repeat_interval => 'freq=minutely;interval=4');
      6  --
      7  dbms_scheduler.create_job(
      8  job_name => 'savedate',
      9  schedule_name => 'every_4_mn',
     10  job_type => 'stored_procedure',
     11  job_action => 'scott.p',
     12  enabled=>true,
     13  auto_drop=>false);
     14  end;
     15  /
    
    PL/SQL procedure successfully completed.
    

    Wait a while and check:

    SQL> select sysdate from dual;
    
    SYSDATE
    ---------------
    05-JUL 19:18:34
    
    SQL> /
    
    SYSDATE
    ---------------
    05-JUL 19:18:57
    
    SQL> select * from times;
    
    C1
    ---------------
    05-JUL 19:19:00
    05-JUL 19:15:00
    

    Edited by: P. Forstmann on 5 Jul. 2010 19:19

  • Put Repeat_interval in place in dbms_scheduler.create_job

    Gurus,
    I need to set up a job to run 4 times per year (1st of JAN, APR, Jul-OCT to 09:00).
    I tried the following code and received the error of invalid values for repeat_interval. Please help me solve this problem.

    dbms_scheduler.create_job (job_name = > "PROCESS_JOB")
    job_type = > 'procedure_stockee ',.
    job_action = > 'SNAP_PROC ',.
    start_date = > trunc (sysdate) + 9/24.
    repeat_interval = > ' FREQ = MONTHLY; INFECTION IS JAN, APRIL, JULY-OCT.; BYDAY = 1; BYHOUR = 9',
    End_date = > null,
    activated = > false,
    auto_drop = > false,
    Comments = > ' snapshot process);
    --
    Anan

    If you want the 1st day of the month, use BYMONTHDAY = 1 instead of BYDAY = 1

    Kind regards
    Bob

    Take a look at the response of Centinul to {message: id = 9352583} for an example of the use of the DBMS_SCHEDULE. Procedure EVALUATE_CALENDAR_STRING.

    Published by: BobLilly on May 22, 2012 17:08

  • dbms_scheduler.create_job and create_program to run the shell program

    dbms_scheduler.create_job and create_program to run the shell UNIX of PL/SQL program

    I guess that the problem could be a shell program. "send_file_susin.sh", I did run the CFT program which is to transfer files. While I tried to this problem, I heard that I should use dbms_scheduler.create_program and create_job to execute the shell command. Therefore,.

    I've done
    () dbms_scheduler.create_program
    program name = > "SEND_FILE_SUSIN"
    program_type = > "EXECUTABLE."
    program_action = > ' / fsoracle/app/oracle/inst2/if_cft/send_file_susin.sh',
    number_of_arguments = > 0,
    enabled = > TRUE,
    Comments = > 'Test '.
    );
    commit;
    in a package, then I run the package.
    program and job

    DBMS_SCHEDULER exec. () CREATE_JOB
    job_name = > 'run_sh1 ',.
    program name = > "send_file_susin"
    start_date = > sysdate + 1/2880.
    repeat_interval = > null,
    End_date = > null,
    job_class = > 'DEFAULT_JOB_CLASS ',.
    enabled = > true
    )

    When I ran, I would check there program and job send_file_susin in the sched.programs and sched.job classes. The job will run about 30 seconds later.
    After 30 seconds, I saw the work was done, but I couldn't see the log of the CFT program. This means that the file have not been transferred...

    I don't know what is wrong with it... Please, someone that solve?
    Thank you very much in advance.

    Hello

    You don't have to create a program first, put directly in the work should work as well.

    Your pl/sql code is correct, then you should check out a few things with the shell script

    -is set + rx
    -is the first line #! / bin/sh
    -should I use the full path to the executable files for example/usr/bin/ftp
    -It defines the variables

    If that all seems well, consider adding lines of logging to your shell script to debug what goes wrong.

    See this post for more tips

    Guide to the external work on with dbms_scheduler 10g for example scripts, batch files

    Any other questions about the Scheduler, you can use the forum Planner here

    Planner

    Hope this helps,
    Ravi.

  • a problem using dbms_scheduler.create_job. I can't do the work

    I do work to run sh program with 5 arguments, even if I put the time, work does not work...
    Please tell me, why it does not work...-. -;

    I write the source for jobs below...

    exec (dbms_scheduler.create_job)
    job_name = > 'run_sh ',.
    job_type = > 'EXECUTABLE. "
    job_action = > ' /fsoracle/app/oracle/inst2/if_cft/test.sh ZADA/fsoracle/app/oracle/product/rdbms/log/KFG. DD SHRCOM. HR DIRECTOR. A03 KFG. DD SHRCOM. HR DIRECTOR. A03 25 25',
    start_date = > sysdate + 1/1440
    );

    Hello

    You don't have to create a program first, put directly in the work should work as well.

    Your pl/sql code is correct, then you should check out a few things with the shell script

    -is set + rx
    -is the first line #! / bin/sh
    -should I use the full path to the executable files for example/usr/bin/ftp
    -It defines the variables

    If that all seems well, consider adding lines of logging to your shell script to debug what goes wrong.

    See this post for more tips

    Guide to the external work on with dbms_scheduler 10g for example scripts, batch files

    Any other questions about the Scheduler, you can use the forum Planner here

    Planner

    Hope this helps,
    Ravi.

  • Planning reports with dbms_scheduler

    Has anyone had success with the planning reports to run with apex_util.get_print_document and dbms_scheduler?
    If not, is there another method that someone uses to schedule reports to run and send the output?

    Thank you!


    dbms_scheduler.create_job
    (job_name = > l_job_name,)
    job_type = > 'PLSQL_BLOCK ',.
    job_action = >
    "start."
    SIS_express_reports.test;
    end;',
    repeat_interval = > ' FREQ = DAILY; BYHOUR = 09; BYMINUTE = 40; BYDAY = MON, FRI, MAR, SEA, GAME '.
    enabled = > true,
    auto_drop = > false,
    Comments = > 'job runs Express SIS reports Scheduler work');

    test procedure
    l_report_blob: = apex_util.get_print_document)
    p_application_id = > l_application_id,
    p_report_layout_name = > l_report,
    p_report_query_name = > l_report,
    p_report_layout_type = > l_output_format,
    p_document_format = > l_output_format,
    p_print_server = > null);

    Hi Bob,
    Successfully used the output pdf report to the api file using apex_util.get_print_document system scheduler.
    But had to consider other options as BI Publisher is too expensive.

    Anyway, I had used the Planner:

     begin
       dbms_scheduler.create_job
       (
          job_name      => 'PDF_RPT',
    
          job_type      => 'STORED_PROCEDURE',
          job_action    => 'pdf2fs_pkg.export_pdf',
          start_date => to_timestamp('19-04-2009 08:00','DD/MM/YYYY HH24:MI'),
          repeat_interval => 'FREQ=DAILY',
          enabled       => true,
          comments      => 'Daily PDF Reports Output at 08:00 to /home/sama/PDF_DIR'
       );
    end;
    

    In addition, your test procedure and more in the extraction of the pdf report, you must configure the environment Apex first.
    Check Scott Spadafore instructions for configuration details:
    Link:How to create an Apex 3.1 a session programmatically context?

    HTH
    Zack

  • How to fix the error with the code: 0xe7210001 failed to load powrprof, object: cls

    Hello

    Dose anyone know how to fix the error with the code: 0xe7210001, message: unable to load powrprof, object: CLSD-no-it is found;
    OR: Fingerprintsoftware OR error: replicas THotkey.exe message window and the computer freezes

    Maleware scanned and virus, also in safe mode, found no infection, reinstalled driver fingerprint, but nothing has changed.

    grateful for the help!

    Hello

    > message: unable to load powrprof, object: CLSD-no-it is found;
    In my view, this would mean that there is a problem with Toshiba Power Saver
    What laptop Toshiba, you have exactly?

    Maybe reinstall Power Saver could help. You can find it on the official website of Toshiba.

  • How can I know if Migration Wizard works... I have the gray wheel on the new mac and it is after a msg error saying there was an error with iCloud (in red)

    How can I know if Migration Wizard works... I have the gray wheel on the new mac and it's after a msg error saying there was an error with iCloud (in red). What is happening with a MacBook Pro refurbished, I just got today. Thanks for any help.

    The guarantee gives the right to the free phone support for the first 90 days of ownership.

  • Satellite L350-214 - error with the software Reeltime

    Hello

    I have a Satellite L350-214 with Windows 7 Pro and have encountered an error with the software Reeltime, I uninstalled and reinstalled and still get the error below. Any help or assistance would be great

    Tony Miller

    Log name: Application
    Source: Windows Error Reporting
    Date: 2010-11-30 12:27:58
    Event ID: 1001
    Task category: no
    Level: Information
    Keywords: Classic
    User: n/a
    Computer: Tony-TOSH
    Description:
    Fault bucket 1223018385, type 5
    Event name: CLR20r3
    Answer: No available
    Cabin ID: 0
    Signature of the problem:
    P1: tosreeltime.exe
    P2: 1.0.0.0
    P3: 4a769d0e
    P4: WindowsBase
    P5: 3.0.0.0
    P6: 4b5950b7
    P7: a86
    P8: 18
    P9: System.InvalidOperationException
    P10:
    Attached files:
    C:\Users\Tony\AppData\Local\Temp\WER7C9E.tmp.WERIn ternalMetadata.xml
    These files are available here:
    C:\Users\Tony\AppData\Local\Microsoft\Windows\WER\ ReportArchive\AppCrash_tosreeltime.exe_25c5a6496c7 ad44943ce88637e3389e8a80bd45_07f0c745
    Symbol of the analysis:
    Recheck for solution: 0
    Report ID: d5b71327-fc74-11df-a596-00266c333aed
    State: 0
    The event XML:



    1001
    4
    0
    0 x 80000000000000

    37886
    Application
    Tony-TOSH



    1223018385
    5
    CLR20r3
    Not available
    0
    tosreeltime.exe
    1.0.0.0
    4a769d0e
    WindowsBase
    3.0.0.0
    4b5950b7
    A86
    18
    System.InvalidOperationException



    C:\Users\Tony\AppData\Local\Temp\WER7C9E.tmp.WERIn ternalMetadata.xml

    C:\Users\Tony\AppData\Local\Microsoft\Window s\WER\ReportArchive\AppCrash_tosreeltime.exe_25c5a 6496c7ad44943ce88637e3389e8a80bd45_07f0c745


    0
    d5b71327-fc74-11df-A596-00266c333aed
    0


    My system specs

    Hey,.

    If you get this error Reeltime, you should try Ccleaner. There may be a registry problem and CCleaner might solve this problem. This great freeware and easy tool which you can download here:
    http://www.Piriform.com/

    Check this box!

  • Measurement and Automation does not open and generates the MAXKnownException error with an unknown exception.

    Measurement & Automation does not open and generates the MAXKnownException error with an unknown exception.

    Heres the log

    Context where the exception was taken:
    (No context - the unhandled exception)

    Size version of Base module
    -------------------- -------- -------- ------------------
    NIMax.exe 00400000 0006 has 000 4.6.0.49152
    ntdll.dll 770E0000 00180000 6.1.7601.18247
    00110000-76060000 6.1.7601.18409 Kernel32.dll
    KERNELBASE.dll 74E00000 00047000 6.1.7601.18409
    SYSFER. 74830000 00072000 12.1.1101.401 DLL
    1BFB0000 0001 NiMaxImp.dll B 000 4.6.0.49152
    Shell32.dll 74E50000 00C4A000 6.1.7601.18429
    Msvcrt.dll 76830000 000AC000 7.0.7601.17744
    74 00000 00057000 6.1.7601.17514 SHLWAPI.dll
    76740000 00090000 6.1.7601.18275 Gdi32.dll
    00100000 76480000 6.1.7601.17514 User32.dll
    Advapi32.dll 75DD0000 000 A 0000 6.1.7601.18247
    sechost.dll 76CC0000 00019000 6.1.7600.16385
    000F0000 rpcrt4.dll 76980000 6.1.7601.18205
    SspiCli.dll 74AE0000 00060000 6.1.7601.18443
    CRYPTBASE.dll 74AD0000 0000 C 000 6.1.7600.16385
    LPK.dll 76470000 0000 has 000 6.1.7601.18177
    USP10.dll 768E0000 0009D 000 1.626.7601.18454
    Ole32.dll 75F00000 0015C 000 6.1.7601.17514
    Msvcp90.dll 739F0000 0008E000 9.0.30729.6161
    Msvcr90.dll 73DB0000 000 has 3000 9.0.30729.6161
    74470000 00009000 6.1.7600.16385 VERSION.dll
    IMM32. 00060000 60000 74 6.1.7601.17514 DLL
    000CC000 76BB0000 MSCTF.dll 6.1.7600.16385
    74320000 00021000 6.1.7600.16385 Ntmarta.dll
    Wldap32.dll 00045000 763E0000 6.1.7601.17514
    Uxtheme.dll 6EB20000 00080000 6.1.7600.16385
    NiMaxUI.dll 1C2D0000 00269000 4.6.0.49153
    Msvfw32.dll 6BE30000 00021000 6.1.7601.17514
    73970000 00032000 6.1.7601.17514 WINMM.dll
    Comctl32.dll 73E80000 0019E000 6.10.7601.17514
    Wsock32.dll 73DA0000 00007000 6.1.7600.16385
    74DC0000 00035000 WS2_32.dll 6.1.7601.17514
    NSI.dll 75AA0000 00006000 6.1.7600.16385
    Oleaut32.dll 76580000 0008F000 6.1.7601.17676
    6D8E0000 003 Mfc90u.dll has 1000 9.0.30729.6161
    MSIMG32.dll 6EBA0000 00005000 6.1.7600.16385
    dwmapi.dll 6EB00000 00013000 6.1.7600.16385
    MFC90ENU. DLL 6EAF0000 0000 D 000 9.0.30729.6161
    NiMaxRes.dll 1BFD0000 0007 has 000 4.6.0.49153
    BtMmHook.dll 10000000 00038000 6.4.0.2900
    PSAPI. DLL 76440000 00005000 6.1.7600.16385
    DCIMAN32. DLL 6E1F0000 00006000 6.1.7601.18177
    MXS.dll 1 B 240000 4.6.0.49152 0000F000
    mxsutils.dll 1B4D0000 00041000 4.6.0.49152
    Msvcp71.dll 7C3C0000 0007C 000 7.10.6030.0
    7 360000 00056000 7.10.6030.0 Msvcr71.dll
    mxsout.dll 1 B 400000 00075000 4.6.0.49152
    64600000 00014000 4.257.3.0 nirpc.dll
    Mswsock.dll 73A 90000 0003C 000 6.1.7601.18254
    profapi.dll 76460000 0000B 000 6.1.7600.16385
    mxMax.dll 1BF20000 00086000 4.6.0.49152
    58000000 00240000 6.5.0.3005 AsstntUI.mxx
    MFC80U. DLL 71210000 8.0.50727.6195 0010F000
    MSVCR80.dll 0009B 000 8.0.50727.6195 72E50000
    Comdlg32.dll 20000 75 0007B 000 6.1.7601.17514
    71180000 00087000 8.0.50727.6195 Msvcp80.dll
    ATL80. DLL 6BD70000 0001 B 000 8.0.50727.6195
    MFC80ENU. DLL 730F0000 8.0.50727.6195 0000E000
    59000000 00582000 6.5.0.3005 mxwTask.dll
    00011000 74180000 6.1.7601.17887 Netapi32.dll
    74170000 00009000 6.1.7601.17514 netutils.dll
    74150000 00019000 6.1.7601.17514 srvcli.dll
    wkscli.dll 74140000 6.1.7601.17514 0000F000
    56000000 00148000 6.5.0.3005 mxwRCEng.dll
    mxcal.mXX 1 A 110000 00056000 4.6.0.49152
    mxcat.mXX 1BE20000 000AB000 4.6.0.49152
    nidmfuiu.mXX 04360000 0010D 000 1.11.0.49152
    NIPALU.dll 64000000 00057000 2.1025.3.0
    64500000 00006000 2.1025.3.0 nipalut.dll
    NIPAL32.dll 00007000 1F700000 2.1025.3.0
    SETUPAPI.dll 76240000 0019D 000 6.1.7601.17514
    CFGMGR32.dll 75DA0000 00027000 6.1.7601.17621
    76220000 00012000 6.1.7601.17621 DEVOBJ.dll
    6 280000 00031000 1.9.0.49152 nimdbgu.dll
    6 000000 00017000 1.9.3.49152 niorbu.dll
    nimstsu.dll 6E180000 0001 has 000 1.11.0.49152
    nimhwcfu.dll 6DFD0000 000 B 6000 1.11.0.49152
    6 050000 0001E000 1.9.0.49152 nidimu.dll
    nimxdfu.dll 0003E000 1.10.0.49152 6D0F0000
    nimxpu.dll 6E1B0000 0000 000 1.11.0.49152 B
    Iphlpapi.dll 74280000 0001C 000 6.1.7601.17514
    WINNSI. DLL 74270000 00007000 6.1.7600.16385
    74B 40000 001BD000 11.0.9600.17126 WININET.dll
    76A 70000 API-MS-Win-Downlevel-User32-L1-1-0.dll 00004000 6.2.9200.16492
    770B 0000 API-MS-Win-Downlevel-shlwapi-L1-1-0.dll 00004000 6.2.9200.16492
    75AB0000 API-MS-Win-Downlevel-Version-L1-1-0.dll 00004000 6.2.9200.16492
    76430000 00003000 6.2.9200.16492 API-MS-Win-Downlevel-normaliz-L1-1-0.dll
    normaliz. DLL 76450000 00003000 6.1.7600.16385
    iertutil.dll 75AC0000 00219000 11.0.9600.17126
    76610000 00005000 6.2.9200.16492 API-MS-Win-Downlevel-advapi32-L1-1-0.dll
    76200000 00017000 6.1.7601.17514 USERENV.dll
    nidmxfu.dll 04470000 0049F000 1.12.0.49152
    nimru2u.dll 6EC70000 00044000 2.10.1.49152
    nimmgluu.dll 69830000 0001E000 1.11.0.49152
    nimercu.dll 6DFB0000 00019000 1.11.0.49152
    MFC71. 00106000 140000 7 7.10.6101.0 DLL
    MFC71ENU. 360000 5 0000E000 7.10.3077.0 DLL
    niGPIBui.mxx B 6, 000000 0008E000 2.7.0.49152
    niIVIui.mxx 02CE0000 000D 0000 4.2.0.49152
    niPXIui.mxx A 671 0000 000BC000 2.1280.1.49152
    niRemPXI.mxx 1 A 270000 00057000 4.6.0.49152
    mxRmCfg.dll 1 has 000000 00090000 4.6.0.49152
    niRMui.mxx 1AD70000 000FD000 4.6.0.49152
    NISRLUI.mxx 6B 500000 00061000 3.4.0.49154
    63800000 00010000 2.7.0.49152 NiSpyLog.dll
    niSWui.mxx 1A3B0000 00072000 4.6.0.49152
    niVISAui.mxx 63360000 0017D 000 4.1280.0.49152
    62 30000 0002E000 4.1280.0.49152 niVISAres2.dll
    RICHED32. DLL 40000 00006000 6.1.7601.17514 6FC
    Riched20.dll 61F70000 00076000 5.31.23.1230
    Wshtcpip.dll 73A 80000 00005000 6.1.7600.16385
    nisysapi.dll 68 has 00000-000B 2000 5.5.2.49152
    Dbghelp.dll 70F20000 000EB000 6.1.7601.17514
    -------------------- -------- -------- ------------------

    Application: C:\Program Files (x 86) \National Instruments\MAX\NIMax.exe
    User name: administrator
    OS version: 6.1.7601 (Service Pack 1)
    Exception code: C06D007E
    Exception addr: 74E0C42D

    Sender's address: 74E0C42D
    Function name: RaiseException
    Module name: KERNELBASE
    Parameters: 00000000 00000001 0518FD84 C06D007E
    Source file: (not available)

    Sender's address: 68A3C6F7
    Function name: DllUnregisterServer
    Module name: nisysapi
    Parameters: 00000000 0518FD50 005F59B8 0000001E
    Source file: (not available)

    Sender's address: 68A53D87
    Function name: DllUnregisterServer
    Module name: nisysapi
    Parameters: 00000350 68A791B8 005F59B8 00000000
    Source file: (not available)

    Sender's address: 68A0DC65
    Function name: nisysInitDiagnosticsByValue
    Module name: nisysapi
    Parameters: 68A 01680 00000001 68A93BB8 FFFFFF01
    Source file: (not available)

    Sender's address: 68A0DFC4
    Function name: nisysInitDiagnosticsByValue
    Module name: nisysapi
    Parameters: 005E2C40 00000000 00000001 00000001
    Source file: (not available)

    Sender's address: 68A 01698
    Function name: nisysInitDiagnosticsByValue
    Module name: nisysapi
    Parameters: 005E2C40 00000000 00000001 00000001
    Source file: (not available)

    Sender's address: 1BE27A73
    Function name: mxGetProvider
    Module name: mxcat
    Parameters: 020469F0 02047084 0518FED0 1BE76CBA
    Source file: (not available)

    Sender's address: 1BE30D2E
    Function name: mxGetProvider
    Module name: mxcat
    Parameters: 02029FA8 02047748 0518FF34 1BE21D4C
    Source file: (not available)

    Sender's address: 1BE35780
    Function name: mxGetProvider
    Module name: mxcat
    Parameters: 00000000 00000000 02047818 020469F0
    Source file: (not available)

    Sender's address: 1BE21D4C
    Function name: (not available)
    Module name: mxcat
    Parameters: 02029FA8 1BE6264D 0518FF7C 73DD3433
    Source file: (not available)

    Sender's address: 1BE21CDC
    Function name: (not available)
    Module name: mxcat
    Parameters: 02030018 00000000 00000000 9192C45C
    Source file: (not available)

    Sender's address: 73DD3433
    Function name: endthreadex
    Module name: MSVCR90
    Parameters: 00000000 0518FF94 7607338A 02047818
    Source file: (not available)

    Sender's address: 73DD34C7
    Function name: endthreadex
    Module name: MSVCR90
    Parameters: 02047818 0518FFD4 77119F72 02047818
    Source file: (not available)

    Sender's address: 7607338A
    Function name: BaseThreadInitThunk
    Name of the module: kernel32
    Parameters: 02047818 00000000 00000000 775D5D69
    Source file: (not available)

    Sender's address: 77119F72
    Function name: RtlInitializeExceptionChain
    Name of the module: ntdll
    Parameters: 02047818 00000000 00000000 73DD345E
    Source file: (not available)

    Sender's address: 77119F45
    Function name: RtlInitializeExceptionChain
    Name of the module: ntdll
    Parameters: 02047818 00000000 00000000 73DD345E
    Source file: (not available)

    If I could come with the OS discs for the thing, I think I'd do a new install of Windows 7.

    Mike...

  • my windows server keeps flashing upward with errors with security

    my windows server keeps flashing upward with errors with security

    I suggest that you reinstall the operating system as there is a Setup error.

  • Unexplained error with custom events

    LabVIEW 8.6.1f1, Win Vista

    I have an error an once-in-a-blue-moon in my program, I need to track down.

    I have it boiled down to a simple test case, where the error occurs more frequently (but still relatively rarely).

    I have a program called MERS, which is separated from my main code HDT.

    TCM can run on a separate machine, but for this test, it is on the same machine, running under the development of LV system.

    This test simply opens a TCP connection to the TCM, calls for a "signature", it receives and stop the connection.

    The part that opens the connection starts also the TCM RECEIVER running, and kill the connection stops this receiver.

    Here's the code for the main event, and you can see that I get an error apparently because I get no response in MS 2000:

    ---------

    The code to GET the SIGNATURE of TCM is here: what it does is to send a request for the signature and then waiting for an event SIGNATURE RECEIVED by the RECEIVER, or a timeout 2000 mSec.

    The error that I get (-100005) comes from there.  If the TCM has failed to respond, it would look like this.  Indeed, this is why the timeouot trap is here.

    -----------

    However, here is the code of the receiver and the Panel, immediately after a failure.

    It is clear from the TABLE that he received the SIGNATURE of TCM TCM.

    There are NO orders in the table indicates that the receiver was still running for 2000 mSec (4 x 500 mSec) after receipt of the order.

    When it receives a SIGNATURE, the code written will trigger an event.  No errors are reported here.

    So what's happening?  It seems that the event should be raised, but it is not received (Event #0 in photo #2 reacts to the event and returns the word signature, without error).

    This happens not all the time - this case is broken loop # 211 - this number is between 20 and 2000.

    With all those open windows in fact do more often: without them always fails, but she performs thousands of do loops.

    So perhaps it is related to the CPU bustle.

    I checked that there is no error with the function SAVE of EVENTS, even when it fails.

    I come back to the fact that the PICTURE in photo #3 says that the signature was received, but it seems that the EVENT did not get generated or received.

    What are the causes that?

    Is it possible that, since the receiver is dynamically loaded and run, that things are not really created and ready when he says they are?

    OK, that seems to have fixed. -He managed 5000 loops, with the windows open and no failure.

    How completely obvious it sounds, when I put it in words:

    Don't ask a question until you are ready to hear the answer.

    The revised registers for events and THEN asks for the signature.

    So, when the answer comes, even if it is immediately, you're ready.

    Don't ask a question until you are ready to hear the answer.

    Don't ask a question until you are ready to hear the answer.

    Don't ask a question until you are ready to hear the answer.

    Don't ask a question until you are ready to hear the answer.

    Don't ask a question until you are ready to hear the answer.


Maybe you are looking for

  • By clicking on the application of the bar of tasks does not work correctly

    The taskbar at the bottom of the screen. If I hover over an open program (for example Live Mail), it appears like normal.However, if I click on it to bring it to use, it does not appear. This just started happening. Any ideas? Thank you Sniffy

  • HP 8560w: CPU clock stuck at maximum speed

    I am under W7 Pro 64 bit on an HP Elitebook 8560w, with i7 2820QM. Yesterday after installing a new device (external finger scanner), I noticed that the fan is running too high. I checked the CPU usage, it has been very low: up to 5%. The processor c

  • HP Pavilion Entertainment PC-no sound

    His record game I have a laptop HP Pavilion Entertainment PC and all of a sudden I have no sound. It feels like it is on mute, but I don't know how to unmute it. I checked the speakers and the volume of the computer. Any help troubleshooting is appre

  • HP ENVY Notebook m7: question of sleep mode.

    When the laptop goes into mode 'sleep', it not to turn back but when turn it off by pressing the power button, then restart it, it works normally again. How can I solve this problem?

  • No power to my speakers in my PC Altec Lansing

    Hello I have no power coming to my speakers, speakers Altec Lansing, cannot hear any noise from subwoofer, up until today had no probs, anybody got any ideas. concerning AGM