DBMS_JOB running at wrong time

We have a bunch of jobs scheduled using DBMS_JOB (yes, I know I should be using DBMS_SCHEDULER, but we haven't migrated there yet). We are running Oracle 11.2.0.3 on Windows Server 2003 x64.
Lately, we've seen jobs kick off at incorrect times. For example, we have a job that is supposed to run every Wednesday at 20:00. The Interval we have set up is "NEXT_DAY(TRUNC(SYSDATE), 'WEDNESDAY')+20/24". This has been working as intended. Today (Monday), however, the job kicked off at 11:52. It was the wrong day and the wrong time.
Can someone let me know how I got about starting to troubleshoot this? I don't see anything weird in my alert log. Where else should I check to figure out why this job ran today?
JOB     LAST_DATE     LAST_SEC     NEXT_DATE     NEXT_SEC     INTERVAL     WHAT
293     1/7/2013 11:52:46 AM     11:52:46     1/9/2013 8:00:00 PM     20:00:00     NEXT_DAY(TRUNC(SYSDATE), 'WEDNESDAY')+20/24     ACQUISITIONS.WORKLOAD_STATUS_UPDATE_NOTIF;

I'll have a look at DBMS_LOGMGR.
Last week's run appears to have completed at the right time, based on the fact that I'm not seeing any errors in my alert log and I can see entries in our own log table.
I'll ignore BSalesRashid comment, helpful as it was. Check out my threads - MANY have gone unanswered, unresolved, or I found workarounds on my own.

Similar Messages

  • Dba_scheduler runs in wrong time

    Dear all,
    I am using Oracle 12c database.
    I am using a dba_scheduler which runs at 10.AM (Eg.)
    That scheduler does some mail alert to my customers. The scheduler failed to run at 10.Am
    For testing I am manually execute the scheduler.
    But when the scheduler runs, the receiving time in my mail shows wrongly as 11.45PM
    I crosschecked the database time it shows correct time.
    Previously, I ran the same setup in 10g database which worked fine.
    Ideas are appreciated.
    Thanks.

    Dear Greg,
    The result of the query is current time,
    9/25/2014 3:37:14.062000000 PM -07:00
    By the way,
    BEGIN
      SYS.DBMS_SCHEDULER.CREATE_JOB
           job_name        => 'SYS.MY_SCHEDULE'
          ,start_date      => TO_TIMESTAMP_TZ('2014/09/24 15:48:39.262000 +05:30','yyyy/mm/dd hh24:mi:ss.ff tzr')
          ,repeat_interval => 'freq=daily; byhour=10; byminute=0; bysecond=0;'
          ,end_date        => NULL
          ,job_class       => 'DEFAULT_JOB_CLASS'
          ,job_type        => 'PLSQL_BLOCK'
          ,job_action      => 'BEGIN DB.Proc_Mail_Gen; END;'
          ,comments        => 'ALERTS'
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'RESTARTABLE'
         ,value     => FALSE);
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'LOGGING_LEVEL'
         ,value     => SYS.DBMS_SCHEDULER.LOGGING_RUNS);
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE_NULL
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'MAX_FAILURES');
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE_NULL
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'MAX_RUNS');
      BEGIN
        SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
          ( name      => 'SYS.MY_SCHEDULE'
           ,attribute => 'STOP_ON_WINDOW_CLOSE'
           ,value     => FALSE);
      EXCEPTION 
        WHEN OTHERS THEN
          NULL;
      END;
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'JOB_PRIORITY'
         ,value     => 3);
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE_NULL
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'SCHEDULE_LIMIT');
      SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
        ( name      => 'SYS.MY_SCHEDULE'
         ,attribute => 'AUTO_DROP'
         ,value     => TRUE);
      SYS.DBMS_SCHEDULER.ENABLE
        (name                  => 'SYS.MY_SCHEDULE');
    END;
    Thanks.

  • Can someone try and reproduce this possible bug with DBMS_JOB.run

    11.2.0.2 EE
    OEL5
    getting an IO dump from what looks like entire shared pool. A call to a procedure using dbms_job.run shows the dump in the plan.
    Be interested to see if anyone is on 11.2.0.3 on OEL can reproduce. thanks.
    sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Tue Jan 8 16:44:33 2013
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning and Automatic Storage Management options
    SQL>
    SQL> ALTER Sesssion SET EVENTS '10046 trace name context forever, level 12';
    System altered.
    /* create a small proc that takes in a var and does nothing except set a variable */
    SQL>  
    SQL>   create procedure io_test ( v_in number)
      2  IS
      3     v_variable    varchar2(10);
      4    begin
      5     null;
      6  END;  
      7   
      8   
    Procedure created.
    /* flush the shared pool to simulate a start */
    SQL> alter system flush shared_pool;
    System altered.
    /* set our tracefile id */
    SQL> alter session set tracefile_identifier=err_test;    
    Session altered.
    /* call the proc from a dbms_job submission */
    SQL>   declare
      2    v_job_no  number;
      3    begin
      4     Dbms_Job.SUBMIT ( job  => v_job_no
      5                    , what => 'sys.io_test('  || 1234 || ');');
      6       Dbms_Job.RUN (v_job_no);
      7     end;   
      8  /  
    PL/SQL procedure successfully completed.
    SQL> tkprof the trace file, go to non-recursive statements at the bottom and we see following
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.04       0.04 4294967293 4294963226 4294967122           1
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.04       0.04 4294967293 4294963226 4294967122           1
    some behaviour notes.
    1. If I call the proc directly, I dont see the huge IO, its only dbms_job.run that does it.
    2. If I call the dbms_job.run a second time I dont see it, its only when I flush the shared pool which simulates the first time I could be calling the proc which is how I found it initially
    3. If I call the dbms_job.run outside of a proc I do see it.
    4. Watch your IO and CPU if you generate it. Huge spike to coincide with the figures in the trace.
    5. 4294967293 is very close 2^32, is also the size of my shared pool so looks like entire pool is being dumped.
    6. Have reproduced on 3 instances on 3 separate servers. all same version 11.2.0.2.0 and patch level which is 2012 Q2.
    7. change the proc to have the variable commented out and we dont see the dump.
    8. I have a call open with support a while now but havent been able to reproduce on their side. Interested to see if someone has OEL 5, 11.2.0.2 instance, can generate it and also an 11.2.0.3 instance and can show its not in that.
    thanks.

    961469 wrote:
    rjamya wrote:
    I am suspecting this is a tkprof issue, analyzing the same trace file via orasrp doesnt show this behavior. Also the high physical reads shown are missing in the raw trace file.Im not so sure, I can see it in the raw trace file.
    do you see it in raw trace file? if so can you post the STAT line showing high disk read (pr=nnnnnnnn) values ? I dont see it in the trace file that i generated.
    Raj

  • Running Jobs in wrong Time Zone

    Hello Gurus.
    All jobs run without troubles/issues in own BW 3.5 (Netweaver2004, SAP_BASIS 640).
    The Jobs in the BW system, self it's running in different Time Zone, because Time Zone of instance is different  in relattion to Host clock.
    The SAP Notes for to apply and fix the problem/issue we have them.
    If we apply these SAP Notes, the time execution of the jobs also it modify?
    Thanks

    Hi
      All you need to do is goto SPRO -> click on reference IMG and General Settings -> Time Zones and Maintain System Zones and then select the Time zone you need for both System and User Default and save it.
    The above solution should resolve your issue, let me now if any problems.
    Thanks,

  • Can a dbms_job.run execute a job that execute another dbms_job.run?

    Hi,
    I'm using Oracle9iR2 database.
    I create a package procedure that loop through a list of jobs from user_jobs table and run it using dbms_job.run(jobid).
    Then I schedule this package procedure as a job (say JobA) itself to execute the above procedure every 15 minutes.
    However, it always fail. When I execute JobA manually from sqlplus, I get the folllowing error. Any idea what's wrong?
    SQL> exec dbms_job.run(55805);
    BEGIN dbms_job.run(55805); END;
    ERROR at line 1:
    ORA-12011: execution of 1 jobs failed
    ORA-06512: at "SYS.DBMS_IJOB", line 406
    ORA-06512: at "SYS.DBMS_JOB", line 272
    ORA-06512: at line 1
    Please advise.
    Thank you.
    Message was edited by:
    bchurn

    Hi,
    I am bchurn's colleague who is currently also looking into this problem. The code that we have is similiar to yours except there's a cursor looping through all the failed jobs and executing them.
    I am not sure what is the actual difference but it is actually a job running a procedure instead of through SQL Plus.
    However, we found out that a job cannot run another job. But it seems to be alright with your settings :-/
    What we have is actually a job created for every email to be sent out to our users (jobA). But many a times, the emails were not sent out because of unknown problems (during that time - I think it's the ORA-00600 error).
    The last time we created the second job (jobB) for the purpose of re-executing failed jobA jobs. The errors are that a job cannot execute another job.
    Then, we worked around to change jobB to re-adjust the execution time for all the jobA jobs instead of directly reexecuting them. While some failed jobA jobs are executed successfully because of it, some still remains. We found out that the errors from failed execution of jobA jobs as following:
    ORA-00600: internal error code, arguments: [kgassg_2], [], [], [], [], [], [], []
    ORA-29279: SMTP permanent error: 555 5.5.4 <fieldNameHere> parameter unrecognized
    The second error very seldom. First one most common. The jobs eventually being executed successfully after many re-execution (sometimes about 3 to 4 times, some over 20 or 60 times). Anyone can give suggestions or inputs on the first error? The error log file and its trace files do not give much information on the errors with something like the following:
    Error log file:
    Errors in file /opt/app/oracle/products/920/admin/testapp/bdump/somefilename.trc:
    ORA-00600: internal error code, arguments: [kgassg_2], [], [], [], [], [], [], []
    And when I go and search for the somefilename.trc, it does not exist.
    Any idea on how to solve this or identifying the actual problem?
    Thank you in advance.

  • NTP sets SMB clients to wrong time

    Hi
    The Server (Mac OS 10.6 server) is set as a time server for the domain but from yesterday reset most of the Windows clients that logged on via SMB to about 3/4s hr fast with the result that IP address's were dropped (Lease expired) and software relying on a network connection failed, time stamps of saved files were wrong and emails had the wrong time. In one case the month was changed to October so the guy went on holiday! Seriously, this is a big problem.
    I've tried resetting the time locale, NTP time server and got rid of "LocalTime" which was a folder instead of a simlink but clients are still reporting time anomalies.
    Thanks

    ntp isn't particularly related to smb/cifs/samba, nor to dhcp, and ntp doesn't implement local time; ntp uses utc/gmt as the time base, and the local boxes adjust their time and timezones based on the client-local timezone definitions.
    It could be that ntp is misconfigured, that something has gone seriously wacky with the ntp time base (hardware error? software error? network error? time-based attack? etc), or there's a rogue ntp server running.
    Have a look at the ntp chatter in the system.log console log on the ntp server as a starting point, and at whatever passes for logging on the ntp clients, and at the settings for ntp. Out-of-the-box, there can be the requirement to tweak the ntp client or daemon configuration via the /etc/ntp.conf file, for instance.

  • Using dbms_job for the 1st time

    I am attempting to use dbms_job for the 1st time and doing some test, but I can't get it to run.
    Connected to: Oracle Database 10g Release 10.1.0.2.0 - Production
    SQL*Plus: Release 8.0.6.0.0 - Production on Wed Mar 1 10:36:18 2006
    I have alter system set job_queue_interval = 10;
    When I tried
    SQL> alter system set job_queue_interval = 10;
    alter system set job_queue_interval = 10
    ERROR at line 1:
    ORA-25138: JOB_QUEUE_INTERVAL initialization parameter has been made obsolete
    my code is as below.
    1 create or replace procedure d1 is
    2 v_job_no binary_integer;
    3 begin
    4 DBMS_JOB.SUBMIT(
    5 v_job_no,
    6 'test_dbms_job',
    7 trunc(sysdate,'hh')+1/24,
    8 'trunc(sysdate,''hh'')+2/24');
    9 commit;
    10* end;
    SQL> /
    Procedure created.
    SQL> exec d1;
    BEGIN d1; END;
    ERROR at line 1:
    ORA-06550: line 1, column 107:
    PLS-00103: Encountered the symbol "END" when expecting one of the following:
    := . ( @ % ;
    The symbol ";" was substituted for "END" to continue.
    ORA-06512: at "SYS.DBMS_JOB", line 79
    ORA-06512: at "SYS.DBMS_JOB", line 136
    ORA-06512: at "PMC_ERP_PROD.D1", line 4
    ORA-06512: at line 1
    Any clues??

    sorry, when I cut and pasted this I but in
    job_queue_interval in twice.
    I alredy have the following set also.
    SQL> alter system set job_queue_processes = 4;
    System altered.Well, it's good...
    And what about semicolon ? ;-)

  • XFCE's Clock shows the wrong time...

    XFCE's clock shows the wrong time constantly (it always shows the GMT time), but whenever I run hwclock -r, it tells me the correct time. Can anyone help fix it?

    Well, I think I found what was wrong at last. It seems that the timezone wasn't set in the rc.conf, even though the TZ variable was set. I changed it, but will have to restart in a bit to see if it works.

  • JDKs in weblogic server return wrong time zone

    Hi , i am running weblogic server 8.1.4, 8.1.6 and 10 on my windows vista
    all of the JDK bundled (both Sun's and JRockit) return GMT instead of my local time zone when i call Timezone.getDefault()
    I am quite sure the operating system has set to correct time zone because my self installed JDK (downloaded from sun) works properly (return correct local time zone)
    is that i have missed anything?
    please help.

    I am noticing the same problem with iCal events imported from Orbitz. The thing is that the more I look into it the more I think this is meant as a feature, not a bug. Go into iCal preferences > Advanced and uncheck "Turn on time zone support". Import the event again and this time both the graphic view and the Get Info view will display the same information.
    It appears that this setting is meant to be useful if you travel to different time zones a lot. Basically, with it you get a time zone dropdown menu in iCal. So when you are in a different time zone you can select it from the dropdown and it will show what time your events occur in your new local time. Just keep in mind that when you create a new event it will be created based on the time zone you have selected. So if you are in California and have selected that time zone but you are adding an entry for a meeting you have when you are back in New York make sure that you select the correct time zone when creating that meeting because by default it will be created in California time and when you return to New York and switch your calendar back it will show the event at the wrong time.
    Frank

  • JSP page display wrong time when compared to the server time

    Hi,
    This problem seems to weird but it is happening
    I have web application running where time is displayed in the page. In this application time is very critical. Currently, time is an hour behind the orginal time.
    I checked the server it is displaying proper time.
    As a matter of troubleshooting, I wrote a java program and run the program in the same server, where the application is running. The java program returns me proper time , but JSP is still displaying time an hour behind. To trouble shoot further, I created a test jsp page to just display the time and accessed the time and the jsp displayed wrong time as well, an hour behind.
    I am running[ tomcat 4.0.3 and j2sdk1.4.3 in suse linux enterprise server 9.0
    My Java program
    import java.util.*;
    import java.text.*;
    public class TestDate
    public static void main(String s[])
         try{
              DateFormat DF = new SimpleDateFormat( "dd/MM/yyyy");
    DateFormat DT = new SimpleDateFormat("hh:mm aa");
              SimpleDateFormat fmt=new SimpleDateFormat("HH.mm");
              Calendar cal= Calendar.getInstance();
              java.util.Date dt=cal.getTime();
              String curdt=DT.format(dt);
              System.out.println("Server Time" + curdt + "\n");
              int hh = cal.get(Calendar.HOUR);
              int mm = cal.get(Calendar.MINUTE);
              int aa = cal.get(Calendar.AM_PM);
              System.out.println("Time" + hh +":"+mm+":"+aa+"\n");
         }catch(Exception e) {
         e.printStackTrace();
    This display Time3:30:1
    My JSP Page
    <%@ page import="java.util.*,java.text.*"%>
    <%
    Calendar calen;
    calen = Calendar.getInstance();
    int hh=calen.get(Calendar.HOUR);
         int mm=calen.get(Calendar.MINUTE);
         int aa=calen.get(Calendar.AM_PM);
    %>
    <%=hh%> <%=mm%> <%=aa%>
    This display 2 30 1
    When I run Date in linux server it gives 3:30 PM EST 2004
    I am really confused, why this is happening, If you have any solutions or idea please post the solution.

    My guess is that the weirdness is caused by Daylight savings time.
    I will presume that you and the server are in the same timezone :-)
    Alternatively it could be caused by getting a different Locale.
    Try the following
    Print out "date.getTime()" value (ie long representing number of millis)
    They should be the same (or close) in both the app and in JSP
    Try simple date format in your JSP as well - what does that result in?
    Print the calendar object, and look for the difference.
    It might be in Locale, Timezone, or whether DST is set or not.
    Hope this helps,
    evnafets

  • DBMS_JOB.RUN: cannot run a job from a job

    I'm trying to set up a job to automatically run every October 1st. The "submit" part of this job is pretty simple, but I am getting some errors on the "run" part:
    declare
    job_nbr binary_integer;
    BEGIN
    dbms_job.submit(job => job_nbr,
              what => 'RESET_ORDER_NBR_SEQ;',
              next_date => to_date('10/1/2008', 'mm/dd/yyyy'),
              interval => 'add_months(sysdate,12)');
    dbms_job.run(job_nbr);
    COMMIT;
    END;
    When I run this script, I get the following error: "ORA-32317: cannot run a job from a job". I know this is due to the dbms_job.run because I don't get the error when I comment this line out. Also, even when I moved the dbms_job.run into its own script (and even hard-coded the job_nbr, so the dbms_job.run was the only line in the script), it still gave me the same error. This is working in SQL Developer when but not in Application Express. It seems to be something specific to the "run", since "submit" and "remove" work fine. Has anyone had any problems like this?

    MBETTIS,
    Rather than including dbms_job.run in your PL/SQL block, why don't you just schedule the job to run via next_date?
    Also, the interval will be computed after the job successfully executes. So if your job takes 5 minutes to run, the value of SYSDATE in your interval may "slide" after each execution. Consider using some form of TRUNC against the SYSDATE in your interval if you want to achieve a consistent execution time.
    Joel

  • AnyGantt APEX chart wrong Time Format

    I'm trying to create an anyGantt chart within APEX but the XML keeps misconverting the time section of date. Thus, where an activity should start on 05-11-2012 15:16:17 (DD-MM-YYYY HH24:MI:SS), it actually starts on 05-11-2012 12:11:00. It seems to take the Year as the Hour and the Month as Minutes, but assigns nothing to the minutes. The Year is also random, it's either 0, 1, 12, or 13.
    So say I have this Record:
    ID___________NAME______________DATE_START_____________________DATE_END_____________________________DRIVERID
    2____________Driving_____________21-9-2012 12:04:40_______________22-9-2012 13:05:50______________________228And complete this statement:
    SELECT null link,
    t.driverid resource_id,
    TRIM(r.lastname) || ', ' || r.firstname resource_name,
    NULL parent_id,
    t.date_start actual_start,
    t.date_end actual_end
    FROM "user"."gantt" t, "user"."drivers" r
    WHERE r.driverid = t.driveridThe Gantt chart translates this activity to:
    RESOURCE_NAME______RESOURCE_ID_______________ACTUAL_START______________ACTUAL_END
    Sleeman,_Bob_________228________________________21-9-2012 *01:09:00*___________22-9-2012 *01:09:00*Thus giving me a wrong gantt chart, as these records would overlap, and start at the wrong time.
    The XML settings are as following:
    <settings>
    ________<title_enabled="False"_/>
    <outer_margin_left="0"_top="0"_right="0"_bottom="0"_/>
    ____<background>
    __________<fill_type="Solid"_color="0xFFFFFF"_/>
    __________<border_enabled="false"/>
    __________<corners_type="Square"/>
    ____</background>
    ____<navigation_enabled="true"_/>
    ____<locale>
    _______<date_time_format_week_starts_from_monday="True">
    _________<months>
    ___________<names>Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December</names>
    ___________<short_names>Jan,Feb,Mar,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec</short_names>
    _________</months>
    _________<week_days>
    ___________<names>Zondag,Maandag,Dinsdag,Woensdag,Donderdag,Vrijdag,Zaterdag</names>
    ___________<short_names>Sun,Mon,Tue,Wed,Thu,Fri,Sat</short_names>
    _________</week_days>_
    _______<format>
    __________<full><![CDATA[%yyyy.%MM.%dd.%HH.%mm.%ss]]></full>
    __________<date><![CDATA[%yyyy.%MM.%dd]]></date>
    __________<time><![CDATA[%HH.%mm.%ss]]></time>
    ________</format>
    _____</date_time_format>
    ____</locale>
    _</settings>I know the default format for the 24-hour notation in Oracle is "HH24" and the minute notation is "mi" and not "mm", but the notation in AnyGantt says minutes are %mm (lowercase) and months are %MM. The notation in anyGantt is different from the Oracle-notation. Who can explain this problem, and better, solve it?

    Hi Rik,
    Thanks for providing the login credentials to your example. I hope you don't mind but I've created a second Gantt chart on the page, to illustrate how to display the time component for the tasks on the chart.
    In order to represent the time component on your charts, you need to use TIMESTAMP columns in your chart query. If you run your existing query from the chart in SQL Workshop, you'll see that the results only return the date component, and do not include the time. In order to retrieve the time component, you would need to use the TO_CHAR function on your DATE columns, which you have done for your report on the same page. Given that the chart query syntax must either reference DATE or TIMESTAMP columns, you therefore need to use the TO_TIMESTAMP function in this situation to ensure that you're capturing the date and time. I've got an example on my sample application, here: http://apex.oracle.com/pls/apex/f?p=36648:83.
    So to get the chart displaying the correct information, I did the following:
    1) Updated the chart series query to use TO_TIMESTAMP on your DATE columns
    2) Updated the Application Timestamp Format via the Edit Application Properties page, changing it from DS to DD-MON-YYYY HH:MIPM, otherwise your timestamp values would still not display the time component.
    Let me know if you've any further questions. I hope this helps.
    Regards,
    Hilary

  • Why does the iPhone 5c display wrong time?

    My iphone 5c currently started displaying the wrong time. I hadnt updated the software yet and thought this was the source of the issue. After the update was complete the time was still incorrect. I have tried syncing my phone with itunes, deleting world clocks, doing hard resets, even wiped the phone back to factory settings. Nothing has worked

    Ok, so this is a two fold problem.  One just like brad805 pointed out you have to have Settings App > General > Date & Time > if Set Automatically is OFF > ON, if it was ON > OFF > Set Date & Time yourself (but when you bring up this screen to manually set time there is this little reminder about having location services set to ON for it to change time zones correctly).  So, leave it  Settings App > General > Date & Time > if Set Automatically is OFF > ON, now go back to Settings App>Privacy>Location Services>ON (if off).  Once I did this (which mine was off) and I went back to Date & Time instead of it thinking I was in New York, it now showed a very complicated America/Indiana/Indiana... (I suspect this is due to the fact that Indiana has 3 time zones EST, EDT (for the counties that observe) and CDT).  Now time is running automatic and smoothly.  This was on an iPhone 5c 16 GB running 7.1.2 on Verizon.  I hope this helps.
    On a side note, its sad that techs in the store cannot read the screen and Apples little notes on it to help you out.

  • DVR records at wrong time

    What gives?
    I have my DVR set to record a show that runs in the wee hours of the morning.
    A couple times a week, it works.  But two or three times a week, it starts recording anywhere from one hour to three hours later.  It thinks it has recorded the program, giving all the correct program guide information.  But shows that it started recording at these wrong times.
    Like I said... What gives?
    Richard W.

    I don't know "what gives,"  but you might try fixing the problem by going to the DVR's menu:
    Settings > DVR > Default Series Options > Air Time.  Set it to "Selected Time Only."
    Once you've changed that setting delete and reschedule the series you want to record.  Hopefully that will stop the recording happening at the wrong time.

  • Is it possible to make sure the app runs all the time either in the foreground or background, User should not have the flexibility to stop it from running

    Hello all:
      I have an enterprise app and i need to make sure it runs all the time.
    If the app is not running i should silently make sure it restarts again.
    Any ideas on how it can be done. It is an enterprise app
    Thanks

    Hmmm....
    How about wrapping all of your dll calls in a single VI (or an Action Engine ) and make sure the VI's thread is NOT set for "Same as caller".
    "Threadconfig.vi" (sp?) will also let you dictate the number of threads associated with an execution system. Set your target thread for "1".
    Not sure on the above.
    Please correct me if this is wrong!
    Ben
    Message Edited by Ben on 07-19-2007 08:26 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

Maybe you are looking for

  • Head office customer line item display FBL5N

    Hi Gurus,               I have assigned head office (customer number) in the customer master of Brach office and i have also maintained sort key as 004. But when i execute FBL5N by entering the head office code in the dynamic selection of FBL5N repor

  • Pages won't open anything

    I am a new apple user. We have been used Pages successfully once but now suddenly it will not open anything - not a template, not a new document, not an existing document. The bar at the top opens when the pages icon is clicked but nothing else happe

  • Can't sign in to my bank since upgrading to Firefox 4, no error message, sign in button won't work, fine with IE?

    Upgraded to Firefox 4 yesterday. Have since had a problem logging into my bank. I enter all log in details, click the sign in button and nothing happens, the page just remains static, there are no error messages. No problem logging in with Internet E

  • I just bought a new iphone 5 , can I change my old iphone 3 to be work as a ipod touch?

    I try to activate the old iphone 3 as a ipod touch. But when I take out the ATT small card. And connect to iTune in computer. It look like to upgrade software. After that all the information is gone. When I boot up the old iphone. It ask me the wifi

  • Client copy error : SAP_CUST

    Hi we just load the SAP and facing the problem in client copy We just created client 100 and cliant role custmization but when trying using sccl for client copy it show the SAP_CUST and some rcf error . Please suggest. Regards, Ravi