Dba_jobs interval

hi guys,
i have a dba job scheduled in oracle 9i database. when i query from dba_jobs, the interval is TRUNC(LAST_DAY(LAST_DAY(SYSDATE)+1))+2/24.
May i know how to interprete it?
anyway to check when the job is 1st scheduled?
thanks

thanks for the advise.
the previous dba has scheduled a job with the above interval.. which means it will actually run every mth end at 2am... this morning, the job failed due to the package being invalid..
when i query the database (dba_jobs) at 9.30am, i got the following next_date as 31-JUL-08 10:30:18... this shouldn't be the case I believe, it shud actually shows the date as next mth end 2am instead.
any experts can kindly advise?
thanks

Similar Messages

  • Role granting issue

    Hi,
    I have created one role with some system privileges like create any table,dubug any procedure etc and with some object prvileges like select grant on DBA_TABLES, DBA_JOBS etc. Now I have granted the role to a different user where I have written a package which consist of few procedures, one of the procedures in package spec like below :
    PROCEDURE REGISTER (
    p_Owner IN ORBIT_DELTA_CNTL.OWNER%TYPE,
    p_Object IN ORBIT_DELTA_CNTL.NAME%TYPE,
    p_Type IN ORBIT_DELTA_CNTL.OBJECT_TYPE%TYPE,
    p_RefreshInterval IN DBA_JOBS.INTERVAL%TYPE,
    p_PurgeInterval IN DBA_JOBS.INTERVAL%TYPE,
    p_Tablespace IN DBA_TABLES.TABLESPACE_NAME%TYPE DEFAULT NULL
    which throws a error during compilation "PLS-00201: identifier 'DBA_JOBS' must be declared". Can any one please explain why this error is coming though I have granted the role to that user.
    Regards,
    Koushik

    Koushik,
    The reason is probably dependencies related. When an object gets invalid, all dependent objects get invalid et cetera. When objects could be valid because of a grant via a role, this means that an object could get invalid by revoking a grant from a role. Because granting user access via a role should not make big parts of the database invalid, it is only allowed via direct grants.
    Regards,
    Rob.

  • Error while running job which is in DBA_JOBS

    All,
    My environment is Oracle - 10.2.0.4.0
    Linux - 2.6
    2 Node RAC environment
    I have a job which is listed in DBA_JOBS. It is not auto executing. When I run manually, I am getting error.
    Please see the error details below.
    SQL> exec dbms_job.run(1);
    BEGIN dbms_job.run(1); END;
    ERROR at line 1:
    ORA-12011: execution of 1 jobs failed
    ORA-06512: at "SYS.DBMS_IJOB", line 413
    ORA-06512: at "SYS.DBMS_JOB", line 275
    ORA-06512: at line 1
    When I check the alert log files, I am getting following message. Looks like some privilege issue. Can somebody help me. Job is owned by System and ran by System.
    Mon Aug 10 11:09:27 2009
    Errors in file ****************.trc:
    ORA-12012: error on auto execute of job 1
    ORA-01031: insufficient privileges
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2251
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2457
    ORA-06512: at "SYS.DBMS_IREFRESH", line 685
    ORA-06512: at "SYS.DBMS_REFRESH", line 195

    Lose the double quote and use 2 single quotes instead.
    And bear in mind:
    - next_date = DATE
    - interval = VARCHAR2
    PROCEDURE SUBMIT
    Argumentnaam                   Type                    In/Out Standaard?
    JOB                            BINARY_INTEGER          OUT
    WHAT                           VARCHAR2                IN
    NEXT_DATE                      DATE                    IN     DEFAULT
    INTERVAL                       VARCHAR2                IN     DEFAULT
    NO_PARSE                       BOOLEAN                 IN     DEFAULT
    INSTANCE                       BINARY_INTEGER          IN     DEFAULT
    FORCE                          BOOLEAN                 IN     DEFAULT
    So, try:
    begin
    dbms_job.submit( job => :jobno
                   , what => 'begin dbms_refresh.refresh(''ADDR''); end;'
                   , next_date => sysdate
                   , interval => 'sysdate + 1/1440'
    commit;
    end;

  • Dba_job that runs every saturday?

    There is a bug in oracle 10.1.0.3 that causes issues when running the default analyzer with dbms_scheduler. Oracle records that I drop this and run it as a dba_job.
    how do I scheduler it to run every saturday at 11 PM?
    declare
      vout integer;
    begin
    dbms_job.submit(job=>vout,
    what=>'begin dbms_stats.gather_database_stats(cascade => TRUE,method_opt => ''FOR ALL COLUMNS SIZE AUTO'',
    degree=>8 ); end;',next_date=>to_date('11072009 23:00','DDMMYYYY HH24:MI'),
    interval=>next_day(trunc(sysdate),'SATURDAY')+0/24);
    end;
      2    3    4    5    6    7    8    9  declare
    ERROR at line 1:
    ORA-23319: parameter value "18-JUL-09" is not appropriate
    ORA-06512: at "SYS.DBMS_JOB", line 57
    ORA-06512: at "SYS.DBMS_JOB", line 134
    ORA-06512: at line 4

    Can you use crontab command ?
    I think this will help and with less headache.
    In your case it would be
    0 23 * * 6 script ,path
    Check this for more info.
    http://www.adminschoice.com/docs/crontab.htm
    Cheers
    Edited by: [email protected] on Jul 13, 2009 2:42 PM

  • Suspending jobs scheduled in dba_jobs

    Oracle9i
    Hi: I have a few jobs scheduled as shown in the dba_jobs. I want to suspend some of the jobs for 2 days. Is there a way to suspend these jobs?
    select JOB,INTERVAL from dba_jobs;
           JOB INTERVAL
           121 trunc(sysdate+1/24, 'HH24')
           104 trunc(sysdate+1/12, 'HH24')+1/96
           107 trunc(sysdate+1/24, 'HH24')+3/96
            81 sysdate+1/12
           108 trunc(sysdate+1/24, 'HH24')+3/96
           186 trunc(sysdate+1/24, 'HH24')
           110 trunc(sysdate+1, 'HH24')
           206 trunc(sysdate+1/12, 'HH24')+1/96
           181 sysdate+1
           182 sysdate+1
           183 sysdate+1
           185 trunc(sysdate+1/24, 'HH24')
           201 trunc(sysdate+1/12, 'HH24')+1/96
           202 trunc(sysdate+1/12, 'HH24')+1/96
           203 trunc(sysdate+1/12, 'HH24')+1/96
           204 trunc(sysdate+1/12, 'HH24')+1/96
           205 TRUNC(SYSDATE+1/12, 'HH24')+1/96
           207 trunc(sysdate+1/12, 'HH24')+1/96
           208 trunc(sysdate+1/12, 'HH24')+1/96
           209 trunc(sysdate+1/12, 'HH24')+1/96
           210 trunc(sysdate+1/12, 'HH24')+1/96
           211 trunc(sysdate+1/12, 'HH24')+1/96
           212 trunc(sysdate+1/12, 'HH24')+1/96

    If you know when you want it to start again, use something like this
    begin
       sys.dbms_job.NEXT_DATE( job      => 1234,
                                next_date => TO_DATE( '13 Aug 2010 17:15:00', 'DD Mon YYYY HH24:MI:SS' ) );
    end;
    COMMIT;If you want it to not run until you decide to manually intervene, use something like this
    begin
      dbms_job.broken(job       => 66
                     ,broken    => TRUE);
    end;
    commit;

  • Dba_jobs newbie question

    Hi: our DBA left and I am troubleshooting a job that is failing. When I query the dba_jobs tables, I get the following job detail. How do I find out which PL/SQL code is this executing?
    SQL> select WHAT from dba_jobs where broken='Y' or failures > 0;
    WHAT
    dbms_refresh.refresh('"DWH"."REM"');TIA
    Ravi

    Hi,
    You can use Describe command to obtain useful information.
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    Connected as hr
    SQL> desc dba_jobs;
    Name        Type           Nullable Default Comments                                                                    
    JOB         NUMBER                          Identifier of job.  Neither import/export nor repeated executions change it.
    LOG_USER    VARCHAR2(30)                    USER who was logged in when the job was submitted                           
    PRIV_USER   VARCHAR2(30)                    USER whose default privileges apply to this job                             
    SCHEMA_USER VARCHAR2(30)                    select * from bar  means  select * from schema_user.bar                     
    LAST_DATE   DATE           Y                Date that this job last successfully executed                               
    LAST_SEC    VARCHAR2(8)    Y                Same as LAST_DATE.  This is when the last successful execution started.     
    THIS_DATE   DATE           Y                Date that this job started executing (usually null if not executing)        
    THIS_SEC    VARCHAR2(8)    Y                Same as THIS_DATE.  This is when the last successful execution started.     
    NEXT_DATE   DATE                            Date that this job will next be executed                                    
    NEXT_SEC    VARCHAR2(8)    Y                Same as NEXT_DATE.  The job becomes due for execution at this time.         
    TOTAL_TIME  NUMBER         Y                Total wallclock time spent by the system on this job, in seconds            
    BROKEN      VARCHAR2(1)    Y                If Y, no attempt is being made to run this job.  See dbms_jobq.broken(job). 
    INTERVAL    VARCHAR2(200)                   A date function, evaluated at the start of execution, becomes next NEXT_DATE
    FAILURES    NUMBER         Y                How many times has this job started and failed since its last success?      
    WHAT        VARCHAR2(4000) Y                Body of the anonymous PL/SQL block that this job executes                   
    NLS_ENV     VARCHAR2(4000) Y                alter session parameters describing the NLS environment of the job          
    MISC_ENV    RAW(32)        Y                a versioned raw maintained by the kernel, for other session parameters      
    INSTANCE    NUMBER         Y                Instance number restricted to run the job                                   
    SQL> Regards,

  • How to get all values from an interval using select statement

    Hi,
    Is it possible to write a select statement that returns all values from an interval? Interval boundaries are variable.
    something like this:
    select (for x in 1,1024 loop x end loop) from dual
    (this, of course, doesn't work)
    The result in this example should be 1024 rows of numbers from 1 to 1024. These numbers are parameters, so it is not possible to create a table with predefined values.
    Thanks in advance for your help,
    Mia.

    For your simple case, with a lower boundary of 1, you can use:
    SELECT rownum
    FROM all_objects
    WHERE rownum <= 1024For a set of number between say 50 - 100, you can use something like:
    SELECT rownum + (50 - 1)
    FROM all_objects
    WHERE rownum <= (100 - 50 + 1)Note, that all_objects was used only because it generally has a lot of rows. Any table with at least the number of rows in your range will work.
    TTFN
    John

  • Time Interval for Daily Calendar in APEX 3

    Hi,
    we're looking at upgrading to Apex 3 and I have a question about the Daily Calendar time interval. Is there a way to change the interval to say, 15 minutes from the default 1 Hour?
    Cheers
    Kofi

    Hello Kofi,
    "Now looking at what I can see on apex.oracle.com, are you saying we'd just have to modify the daily calendar template?"The template only control the look of the calendar, not its functionality. If the default daily view meets your needs, you don't have to define any new templates.
    "I'd imagine that the whatever is creating the tags that will be displayed by the template needs changing to incorporate the other 15 minute cells I would add"Most of the calendar functionality you can control can be defined on the "Calendar Attributes" tab. The most important is the date column. If this column includes reference of time (on top of the date, of course) the APEX engine will automatically associate your entry with the proper "Hour" row. You are not adding cells. You are adding calendar entries. If several of these entries share the same hour slot, APEX will put all of then in the same row.
    The best way to understand it is simply define these entries. As I understand, you have access to apex.oracle.com, so it shouldn't be a problem.
    Regards,
    Arie.

  • Want to get request number to BPEL process in an interval

    Hi All,
    I have two applications A and B.I need to receive request message from A to B through BPEL process. BPEL process receives the request data(through schema- Source of transform activity) from A and updates that data into B(Target -request schema of B).BPEL process is the middleware between two applications
    My requirement is :
    I want to analize request data in an interval of 24 hours. I have one parameter('sequence') in the request schema of B which has to indicate the request number to BPEL process.
    Clear explanation to requirement details:
    Application A starts pushing data at 12 'o clock(0:00 hrs midnight) and then parameter 'sequence' should be integer 1 or 0.Like that 'Sequence' should be increased by 1 for every request to BPEL process.
    I want the sequence values like below(for 24 hrs cycle):
    First request :
    Reuqest push time - 0:00 hrs
    Sequence - 1
    BPEL process instance(which will be created automaically in EM console) - Instance1
    Second Request :
    Reuqest push time - 1:30 hrs
    Sequence - 2
    BPEL process instance(which will be created automaically in EM console) - Instance2
    1
    Third Request:
    Reuqest push time - 4:00 hrs
    Sequence - 3
    BPEL process instance(which will be created automaically in EM console) - Instance3
    Like that
    last request in 24 hrs cycle should be :
    Reuqest push time - 23:00 hrs
    Sequence - Some number according to number of requests at that time.
    After 24 hrs ,Sequence again should become as 1 to indicate the starting point of the 24 hrs next day.(like data in above table)
    Can you help me in this regard? I am using transform activity in which I have 'sequence' parameter .
    Thanks in advance
    Edited by: 899283 on Aug 25, 2012 7:16 AM

    Create a "While" activity.
    Create a variable named seq of type int.
    In the while condition check the current time.
    xp20:current-time() < <counter reset time>
    Create a pick activity to receive the message inside while loop.
    Create assign activity in the while loop. Assign the value of variable seq to the payload and increment it by one.
    Outside while loop , reset seq back to 0 by using another assign activity.
    In case the composite has to run continuously after first submission, use another outer while loop to check the condition while seq = 0.
    Hope it helps.
    Regards.

  • Square root of an interval using Newton's method

    Hello!
    I am trying to create a method that calculates the square root of an interval, and I am having trouble with both the actual calculation part, as well as the base case for the recursion. I implemented a simple counter for the recursion, but was not seeing any kind of pattern for the values. (I am pretty sure the "better" values should converge to 0).
    I was wondering if anybody wanted to take a swing at it and help me out. :)
    Here is the code for my program, followed by the code for Newton's method for calculating square roots of doubles. I am supposed to use it as a reference.
    I made the simple arithmetic methods with the help of http://en.wikipedia.org/wiki/Interval_arithmetic . They seem to work fine, so I am having issues with troubleshooting!
    Thanks!
    public class Interval {
         double x1;
         double x2;
         public Interval(double newx1, double newx2){
              x1 = newx1;
              x2 = newx2;
         public String toString(){
              return "[" + this.x1 + ", " + this.x2 + "]";
         //Add an interval to the current one.
         public Interval add(Interval j){
              double tempx1 = this.x1 + j.x1;
              double tempx2 = this.x2 + j.x2;
              Interval tempInterval = new Interval(tempx1, tempx2);
              return tempInterval;
         //Subtract an interval from the current one.
         public Interval sub(Interval j){
              double tempx1 = this.x1 - j.x2;
              double tempx2 = this.x2 - j.x1;
              Interval tempInterval = new Interval(tempx1, tempx2);
              return tempInterval;
         //Multiply an interval with the current one.
         public Interval mul(Interval j){
                   double minx1 = Math.min(this.x1*j.x1, this.x2*j.x2);
                   double minx2 = Math.min(this.x1*j.x2, this.x2*j.x1);
                   double maxx1 = Math.max(this.x1*j.x1, this.x2*j.x2);
                   double maxx2 = Math.max(this.x1*j.x2, this.x2*j.x1);
                   double tempx1 = Math.min(minx1, minx2);
                   double tempx2 = Math.max(maxx1, maxx2);
                   Interval tempInterval = new Interval(tempx1, tempx2);
                   return tempInterval;
         //Divide the current interval by a new one.
         public Interval div(Interval j){
                   double minx1 = Math.min(this.x1/j.x1, this.x2/j.x2);
                   double minx2 = Math.min(this.x1/j.x2, this.x2/j.x1);
                   double maxx1 = Math.max(this.x1/j.x1, this.x2/j.x2);
                   double maxx2 = Math.max(this.x1/j.x2, this.x2/j.x1);
                   double tempx1 = Math.min(minx1, minx2);
                   double tempx2 = Math.max(maxx1, maxx2);
                   Interval tempInterval = new Interval(tempx1, tempx2);
                   return tempInterval;
         static Interval step(Interval x, Interval y) {
              // Compute a "better" guess than x for the square root of y:
              // Code for doubles: Interval better = x - (x*x - y)/(2*x);
              Interval two = new Interval(2.0, 2.0);
              Interval better = x.sub( ( (x.mul(x)).sub(y) ).div(two.mul(x)) );
              // For doubles:
              if ( Math.abs(better.x2 - better.x1) < 0.001 ) { // base case
                   System.out.println(better.toString());
                   return better;
              else {
                   return step(better, y); // try to get even better...
         static Interval sqrt(Interval y) {
              return step(y, y); //: start guessing at the square root
         public static void main(String args[]){
              Interval i = new Interval(4.0, 8.0);
              Interval j = new Interval(4.0, 8.0);
              Interval addij = i.add(j);
              Interval subij = i.sub(j);
              Interval mulij = i.mul(j);
              Interval divij = i.div(j);
              Interval sqrtj = i.sqrt(j);
              System.out.println("Intervals:");
              System.out.println(i.toString());
              System.out.println(j.toString());
              System.out.println("Add: " + addij.toString());
              System.out.println("Sub: " + subij.toString());
              System.out.println("Mul: " + mulij.toString());
              System.out.println("Div: " + divij.toString());
              System.out.println("Sqrt: " + sqrtj.toString());
    }and newton's root finder for doubles:
    public class SquareRoot {
         static final double ALLOWED_ERROR = 0.001;
          * Newton's method for finding square roots.
         static double step(double x, double y) {
              // Compute a "better" guess than x for the square root of y:
              double better = x - (x*x - y)/(2*x);
              // Are we close enough?
              if ( Math.abs(x - better) < ALLOWED_ERROR ) { // => stop: base case
                   return better;
              else {
                   return step(better, y); // try to get even better...
         static double sqrt(double y) {
              return step(y, y); //: start guessing at the square root
         public static void main(String[] args) {
              System.out.println(Math.sqrt(1234));
              System.out.println(sqrt(1234));
              // NOTE: you may need to adjust the error bound for these two to agree
    }

    Nathron wrote:
    Here is the code for my program, followed by the code for Newton's method for calculating square roots of doubles. I am supposed to use it as a reference.The only thing I can see that looks suspicious is the call to step(better, y) in your reference code.
    Are you sure it shouldn't be step(y, better) or step(better, x))? Newton-Rhapson is supposed to be a progressive method, but as far as I can see the value of y can never change with the way you've got it. And if you've copied that to your new code, it might explain the problem.
    Winston

  • UCCE 8.5.3/8.5.4 call volume statistics not matching in interval tables

    hello,
    We have just migrated a call center to UCCE 8.5.3 that runs roggers and ICM call flow scripts that contain very basic flows. In each flow there is basically a one-to-one ratio of call type elements to select skill group elements.
    Generally you would expect the call volume (as our scripts are written) to have almost the same call volume in the call type interval table and the skill group interval table, with allowable differences because of RONAs, etc. But basically somewhat close.
    In general this does work but after a reboot of the roggers (A and B sides) (logger down first, then router and reversed to start), the skill group interval data lags greatly from the call type interval data, meaning maybe 10% of the call type interval volume. We have learned that completely shutting down both A and B side and then briinging it back up in order from scratch seems to alleviate the problem (until the next restart). We cannot just leave the servers alone though due to company security patching policies.
    Cisco TAC had recommended patching to UCCE 8.5.4 which we have recently done, but the probelm persists.
    I was wondering if this data discrepancy has ever been seen by anyone else or if possibly some system config issue might be self-deating us? Rebooting the roggers leaves the phone system itself working just fine for the call centers, but the recording of statistics to the skill group interval table is greatly impacted with almost no recording of volume in relation to the call type interval (and for comparison, the call type skill group interval table as well).
    We would generally not worry about it, but the workforce management vendor that takes its feed from UCCE only uses the skill group interval, which is basically reporting almost no volume in the mentioned scenarios.
    If anyone can provide any information it would be most appreciated/
    Thanks.
    Greg

    Thank you for the response. The time source check is a great idea. We ran into problems before when internal web service servers did not match the PGs (CTIOS service) and CTI provideed stats did not match.
    We will continue to work through TAC, but I was just wondering if anyone else had seen this (as 8.5.4 sid not fix it) and if maybe it could have been something self-defeating in our system configuration or scripting. We did not immediately know this was happening until our 3rd party workforce management vendor made us aware.
    Thanks,
    Greg

  • Error Message: Number is not in external Interval (Testing Schedule)

    Hii ,
    Iam working on Stability study process. I have maintained stabity test with materiial (QS) & performed my test upto Initial test of Inspection lot. But when i click create Testing Scheudle in the Notification (QM02) , system asks for testing schedule data for
    Maintenane strategy, scheduling period.
    On clciking create testing schedule , system throws error message "Number is not in external interval". I have maintained all the prerequite setting on number range in following spro path stability study>testing schedule for stability study> Category--> no range.
    For Group ST   600000000- 6999999999 for Intenal & 70000000-7999999999 for external. But still iam facing with error message ""Number is not in external interval".  It throws message no "IP324" . Even I had cross checked with maintenance setting, but error message remains . How to resolve this issue?
    with regards,
    K.Lokesh.
    Edited by: Lokesh K on Mar 11, 2010 1:13 PM
    Edited by: Lokesh K on Mar 12, 2010 5:55 AM

    Hi Lokesh,
    did you actually enter a number ( i.e. 70000001)?
    Usually Stability studies are created using the external number range so that ringing names can be used for the studies:
    Example:
    Material: 000000000000000001  acetylsalicylic acid
    Stability study: ASA1
    I hope that this information proves usefull.
    Regards
    Isabelle

  • Can someone please help with this code and what it means? Interval Since Last Panic Report:  6395213 sec Panics Since Last Report:          1 Anonymous UUID:                    8AEBAB22-1943-48B3-8D30-E4D07CCDEEA0  Tue Mar 18 13:30:13 2014 Machine-check c

    Interval Since Last Panic Report:  6395213 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    8AEBAB22-1943-48B3-8D30-E4D07CCDEEA0
    Tue Mar 18 13:30:13 2014
    Machine-check capabilities (cpu 3) 0x0000000000000006:
    family: 6 model: 15 stepping: 6 microcode: 198
    Intel(R) Xeon(R) CPU            5160  @ 3.00GHz
    6 error-reporting banks
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x1000000020000000 invalid
    IA32_MC1_STATUS(0x405): 0x0000000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0020000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000011 invalid
    IA32_MC5_STATUS(0x415): 0xb200001080200e0f valid
    MCA error code:            0x0e0f
    Model specific error code: 0x8020
    Other information:         0x00000010
    Status bits:
      Processor context corrupt
      Error enabled
      Uncorrected error
    panic(cpu 2 caller 0x2cf3cc): "Machine Check at 0x002d3432, trapno:0x12, err:0x0," "registers:\n" "CR0: 0x80010033, CR2: 0x103dd000, CR3: 0x00100000, CR4: 0x00000660\n" "EAX: 0x00000000, EBX: 0x000000be, ECX: 0x6241b000, EDX: 0x00000001\n" "ESP: 0x6f853c58, EBP: 0x6f853c58, ESI: 0x00000000, EDI: 0x827a6b3c\n" "EFL: 0x00000016, EIP: 0x002d3432\n"@/SourceCache/xnu/xnu-1699.32.7/osfmk/i386/trap_native.c:258
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x6853cf38 : 0x2203de (0x6b08cc 0x6853cf58 0x229fb0 0x0)
    0x6853cf68 : 0x2cf3cc (0x6bde94 0x6bdfc8 0x2d3432 0x12)
    0x6853d0d8 : 0x2cf409 (0x6853d110 0xde 0x6bdfc8 0x1)
    0x6853d0f8 : 0x2e6182 (0x6853d110 0x0 0x0 0x0)
    0x6f853c58 : 0x2d381e (0x20 0x7fffffff 0x6f853c88 0x29701be)
    0x6f853c68 : 0x29701be (0x684b6100 0xffffffff 0x6f853cb8 0x9d8e800)
    0x6f853c88 : 0x297028b (0x684b6100 0xffffffff 0x7fffffff 0x827aa38d)
    0x6f853cb8 : 0x296864f (0x684b6100 0x827aa38d 0xbe 0xffffffff)
    0x6f853d58 : 0x29699fe (0x827aa38d 0xbe 0x3 0x0)
    0x6f853de8 : 0x2d0cde (0xffffffff 0x7fffffff 0x6f853e08 0x2cd4ca)
    0x6f853e08 : 0x22d3e5 (0x684c5000 0x827a6711 0xbe 0x684c5de0)
    0x6f853e48 : 0x22e1c0 (0xd58c7f0 0x684c5000 0x0 0x0)
    0x6f853e98 : 0x22f6c2 (0xd58c80c 0x2 0x12 0xd7c0e00)
    0x6f853ef8 : 0x22f821 (0x2150f0 0x0 0x0 0xd58c7f0)
    0x6f853f18 : 0x21505d (0x2150f0 0x7000006 0xc00 0xffffffff)
    0x6f853f48 : 0x21b385 (0xede8f28 0x7000006 0xc00 0xffffffff)
    0x6f853f98 : 0x2b7bb7 (0xd4c9954 0x7fff 0xd4c9984 0x8)
    0x6f853fc8 : 0x2e60c7 (0xd4c9950 0x0 0x10 0xd4c9950)
         Kernel Extensions in backtrace:
            com.apple.driver.AppleIntelCPUPowerManagement(195.0)[D1550426-D346-4805-A777-06 63C69080DA]@0x2966000->0x298ffff
    BSD process name corresponding to current thread: iTunes
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:26:45 PDT 2012; root:xnu-1699.32.7~1/RELEASE_I386
    Kernel UUID: 859B45FB-14BB-35ED-B823-08393C63E13B
    System model name: MacPro1,1 (Mac-F4208DC8)
    System uptime in nanoseconds: 818233088876
    last loaded kext at 91751914186: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0x2990000, size 28672)
    last unloaded kext at 226546974280: com.apple.driver.CSRHIDTransitionDriver          4.0.8f17 (addr 0x21cd000, size 12288)
    loaded kexts:
    com.parentalctrl.kext.filter          3.8.1
    com.logmein.driver.LogMeInSoundDriver          1.0.3
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AudioAUUC          1.59
    com.apple.GeForce7xxx          7.0.4
    com.apple.driver.AppleUSBDisplays          323.3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCEDriver          1.1.9
    com.apple.driver.Apple_iSight          4.0.1
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleLPC          1.6.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.CSRUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.AppleRAID          4.0.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleIntel8254XEthernet          2.1.3b1
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleUSBUHCI          5.1.0
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.driver.AppleBluetoothHIDMouse          175.9
    com.apple.driver.AppleHIDMouse          175.9
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.nvidia.nv40hal.G7xxx          7.0.4
    com.apple.NVDAResman.G7xxx          7.0.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleUSBHIDKeyboard          160.7
    com.apple.driver.AppleHIDKeyboard          160.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOATAPIProtocolTransport          3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 5 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 3, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8319, 0x4D4B435333385554412D4944542020202020
    Memory Module: DIMM Riser A/DIMM 4, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8319, 0x4D4B435333385554412D4944542020202020
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, sppci_displaycontroller, Slot-1
    Serial ATA Device: ST3250824AS  Q, 250.06 GB
    Serial ATA Device: SAMSUNG HD501LJ, 500.11 GB
    Serial ATA Device: WDC WD10EADS-00M2B0, 1 TB
    Serial ATA Device: WDC WD10EADS-00M2B0, 1 TB
    Parallel ATA Device: SONY    DVD RW DW-D150A
    USB Device: hub_device, apple_vendor_id, 0x911d, 0xfd500000 / 3
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd520000 / 5
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfd522000 / 6
    USB Device: Apple Cinema Display, apple_vendor_id, 0x921d, 0xfd530000 / 4
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x5d200000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: iSight, Apple Computer, Inc., 200mbit_speed
    FireWire Device: unknown_device, unknown_speed

    Kernel panic, machine check, uncorrected error correlates very strongly with RAM memory errors.
    Time for a Memory upgrade.

  • XI file adapter polling faster than poll interval

    Hi,
    We are facing a issue with the file adapter/authorization of the FTPUSER.
    We FTP a server and pick up a file from a particular folder.
    My polling interval is 2 minutes
    My retry interval is space.
    Processing mode : ARCHIVE
    We are archiving it on a Network attached server(NAS) mounted on our XI server.
    When XI polls for the first time it picks up the file but the sender file adapter shows following error in RWB.
    <b>2006-01-20 11:31:08 GMT: Error: Deleting of file 'ARUCSjnewb80.txt' failed - cannot proceed: FTPEx: ARUCSjnewb80.txt: Access is denied.</b>
    The picked up file gets processed but at the same time just within 12-13 seconds of the first poll XI picks up the file second time and then in another 3 seconds for the third time.
    After this the file gets archived thrice in the archive directory and then gets deleted from the source directory.
    We are unable to understand why XI is polling  again  after few seconds of the first poll.(As per my understanding it should have polled after 2 minutes).
    I am able to delete the file manually from the Ftp server.
    Could anyone give a pointer towards what we are missing or what probable reasons could be?
    authorization issue?( XIADM /ftpuser have full authorization)
    Some adapter setting?
    Regards,
    Sulakshana

    Hi,
    Could you let me know how frequent the file gets loaded to the FTP server.
    Is your file size too large to get loaded.. If so try to increase the polling interval. Also make sure that you have provided the polling time in sec and not in minutes...i.e for 2 minutes it should have been specified as 120 sec as polling interval
    Regards,
    Nithiyanandam

  • Posting Period - Period Interval

    Hi Guru,
    What is the difference between the period interval 1 and period interval 2 in transaction open and close posting period (tcode: S_ALR_87003642 or ob52)

    Hi
    Actually in Posting Period 1 that is from period 1 to Period 12 indicates the periods for each month. to encounter the Day to Day Transactions..
    And on the other side Posting Period 2 is meant for Speacial Posting Period that is Period 13 to Period 16., standard as per SAP..
    These SPP are mainly useful for and at the time of Year End Closings.. that is as per the fiscal year March 31 is the Year End., So, after March., the usuall business practice is to finalize the financial statements for Year End.....
    During the Year End Closing., to encounter the day to day transanction, we can use the Speacial Posting Periods., after the completion of Year End Closing., in the New Fiscal year we can transfer the Financial Data from Speacial Posting Periods..
    So, it wont affet the Business Process....
    I think you got some useful information....
    Raja...

Maybe you are looking for

  • How do I find the IP for a website published on Muse?

    I'm having trouble redelegating my domain, the website is built in Muse and I'm not even sure its possible to redirect using Business catalyst, I am finding the tutorials unclear, any help would be amazing

  • Hiding a column in smartform

    Hi, We have a requirement where we should be able to hide columns in smarforms based on input from webdynpro. We can pass info as to which column is to be hidden. But we do not want blank columns in between.Columns are separated by lines. Please help

  • REP-1425 report formula DO_SQL error putting value into column

    Hi all I have opened a report 2.5 in Oracle9i Reports Developer and, it converted ok. However, when I run the report (paper layout), the message rep-1425 report formula DO_SQL error putting value into column. Column may not be referenced by parameter

  • Can i copy text from illustrator to indesign and retain attributes

    Hello, I received an illustrator cs3 file that I need to convert to InDesign cs3. Is there a way to copy the type that is set in illustrator to indesign, while retaining the attributes. I need to be able to make changes on the type in indesign, so co

  • Segment builder and Graphical Modeler

    Hello I have not been able to find any assistance with following issue. I am trying to create a target group from the Web UI.  I have followed the basic steps logging into Marketing Professional Marketing -> Segement - Name and Save Profile Set then