Normal scheduler behavior?

I created a schedule to run a job every two minutes.
BEGIN
  SYS.DBMS_SCHEDULER.DROP_JOB
    (job_name  => 'GAFF.DATEEVERY2MINS');
END;
BEGIN
  SYS.DBMS_SCHEDULER.CREATE_JOB
       job_name        => 'GAFF.DATEEVERY2MINS'
      ,start_date      => NULL
      ,repeat_interval => 'FREQ=MINUTELY'
      ,end_date        => NULL
      ,job_class       => 'DEFAULT_JOB_CLASS'
      ,job_type        => 'PLSQL_BLOCK'
      ,job_action      => 'BEGIN insert into GAFF.scheduler_output values(systimestamp,''SOME TEXT '' || systimestamp); END;'
      ,comments        => 'write date to TABLE every 2 mins'
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'RESTARTABLE'
     ,value     => TRUE);
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'LOGGING_LEVEL'
     ,value     => SYS.DBMS_SCHEDULER.LOGGING_RUNS);
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE_NULL
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'MAX_FAILURES');
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE_NULL
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'MAX_RUNS');
  BEGIN
    SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
      ( name      => 'GAFF.DATEEVERY2MINS'
       ,attribute => 'STOP_ON_WINDOW_CLOSE'
       ,value     => FALSE);
  EXCEPTION
    -- could fail if program is of type EXECUTABLE...
    WHEN OTHERS THEN
      NULL;
  END;
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'JOB_PRIORITY'
     ,value     => 3);
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE_NULL
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'SCHEDULE_LIMIT');
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'AUTO_DROP'
     ,value     => FALSE);
  SYS.DBMS_SCHEDULER.SET_ATTRIBUTE
    ( name      => 'GAFF.DATEEVERY2MINS'
     ,attribute => 'RAISE_EVENTS'
     ,value     => SYS.DBMS_SCHEDULER.JOB_STARTED + SYS.DBMS_SCHEDULER.JOB_SUCCEEDED + SYS.DBMS_SCHEDULER.JOB_FAILED + SYS.DBMS_SCHEDULER.JOB_COMPLETED);
END;
/When I look at the source for the created objects in Toad I see that it created the following limit on the schedule itself.
BEGIN
  SYS.DBMS_SCHEDULER.CREATE_SCHEDULE
      schedule_name    => 'GAFF.EVERY2MINS'
     ,start_date       => TO_TIMESTAMP_TZ('2012/09/11 12:36:15.000000 America/New_York','yyyy/mm/dd hh24:mi:ss.ff tzr')
     ,repeat_interval  => 'FREQ=MINUTELY;INTERVAL=2;'
     ,end_date         => TO_TIMESTAMP_TZ('2012/09/19 00:00:00.000000 America/New_York','yyyy/mm/dd hh24:mi:ss.ff tzr')
     ,comments         => 'Run these jobs every two minutes'
END;
/I take that to mean that the schedule is not valid after 9/19. The job that I started three days ago was still running when I came in this morning though. So what I'd like to know is:
1) What does the 9/19 date mean? No NEW jobs will be able to use the schedule after that date?
2) How did that limit get in there in the first place from the attributes I set in my code?
Version Info:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
CORE     10.2.0.4.0     Production
TNS for Linux: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production
Nevermind 2). It got there from the schedule create code (which I forgot to post but post here);
BEGIN
  SYS.DBMS_SCHEDULER.DROP_SCHEDULE
    (schedule_name  => 'GAFF.EVERY2MINS');
END;
BEGIN
  SYS.DBMS_SCHEDULER.CREATE_SCHEDULE
      schedule_name    => 'GAFF.EVERY2MINS'
     ,start_date       => TO_TIMESTAMP_TZ('2012/09/11 12:36:15.000000 America/New_York','yyyy/mm/dd hh24:mi:ss.ff tzr')
     ,repeat_interval  => 'FREQ=MINUTELY;INTERVAL=2;'
     ,end_date         => TO_TIMESTAMP_TZ('2012/09/21 00:00:00.000000 America/New_York','yyyy/mm/dd hh24:mi:ss.ff tzr')
     ,comments         => 'Run these jobs every two minutes'
END;
/Edited by: Gaff on Aug 20, 2012 12:40 PM

I was under the (mistaken?) impression that "MINUTELY", "DAILY" etc. were an indication of granularity. I mean, there isn't something called "BIMINUTELY" is there? So if I want 2 minutes, what else would I set that attribute to? (I'm asking, I have not played with SCHEDULER before).
In any case, it has run every two minutes :)
Thanks
Looking at the SCHEDULE definition again, I think given that the granularity and repeat interval is set in that, then the JOB definition should probably just be null. I'm guessing it is ignored in this case because the job is assigned to a schedule that has an interval defined.
Edited by: Gaff on Aug 20, 2012 1:59 PM

Similar Messages

  • Normal query behavior?

    I have about 70 documents loaded into a 10g DB and have a context index on that table. I am entering terms into an application that makes a keyword search with each individual term entered into the search string. What I have noticed is, it works better with fewer terms. In particular, if I am looking at a docuent result and I enter more and more words from the document I'm looking at into the search string, the document will end up not being a match eventually. This is particularly true if I enter sets of contiguous words (without 's) from different parts of the document. I would think the more terms, the higher the score. Is there a technical reason for this behavior?
    Thanks

    Put an AND operator between your terms -
    {word1} and {word2} and {word3}

  • Is this normal storage behavior?

    I knew I'd need to transfer some files off-drive soon but the space I knew I had was suddenly evaporated and I was faced with the "Disk Full" error. As fast as I could delete documents the space freed was being used up even though all apps that could be downloading anything I'd already quit. I'm talking about nearly fifty gig. of space.
    I wonder if those who know how to read the console logs might find anything meaningful in these lines? I'd be thrilled with help solving this mystery.
    2/4/15 2:50:45.000 PM kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    2/4/15 2:50:46.982 PM com.apple.quicklook.satellite[11743]: bootstrap_look_up2 failed with 0x44c
    2/4/15 2:50:47.000 PM kernel[0]: Sandbox: sandboxd(11744) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:50:53.292 PM ubd[11655]: objc[11655]: Object 0x7fe889301c10 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: low swap: suspending pid 9769 (Safari)
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: Swap File Error.
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.307 PM ubd[11655]: objc[11655]: Object 0x7fe889301c10 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:53.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:54.138 PM com.apple.launchd.peruser.501[299]: ([0x0-0x552552].com.apple.Safari[9769]) Exited: Terminated: 15
    2/4/15 2:50:54.139 PM 1PasswordAgent[357]: [HYBI] socketDidDisconnect: Error Domain=GCDAsyncSocketErrorDomain Code=7 "Socket closed by remote peer" UserInfo=0x11600ff30 {NSLocalizedDescription=Socket closed by remote peer}
    2/4/15 2:50:54.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:54.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    2/4/15 2:50:56.024 PM com.apple.launchd.peruser.501[299]: ([0x0-0x695695].com.apple.inputmethod.ironwood[11732]) Exited: Killed: 9
    2/4/15 2:50:56.000 PM kernel[0]: memorystatus_thread: idle exiting pid 11732 [DictationIM]
    2/4/15 2:50:56.000 PM kernel[0]: memorystatus_thread: idle exiting pid 11736 [QuickLookSatelli]
    2/4/15 2:50:56.557 PM com.apple.launchd[1]: (com.apple.quicklook.satellite.0E583FEC-7B6D-4FCB-9C8B-8C557B084207[11736]) Exited: Killed: 9
    2/4/15 2:50:57.316 PM com.apple.launchd[1]: (com.apple.xpcd.F5010000-0000-0000-0000-000000000000[11742]) Exited: Killed: 9
    2/4/15 2:50:57.000 PM kernel[0]: memorystatus_thread: idle exiting pid 11742 [xpcd]
    2/4/15 2:51:10.248 PM com.apple.quicklook.satellite[11749]: bootstrap_look_up2 failed with 0x44c
    2/4/15 2:51:10.000 PM kernel[0]: Sandbox: sandboxd(11750) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:51:21.341 PM sandboxd[11750]: ([11749]) QuickLookSatelli(11749) deny mach-lookup com.apple.PowerManagement.control
    2/4/15 2:51:34.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:51:36.263 PM PopChar[392]: re-enabling tap: -2, times=(0.044, 0.000, 0.000, -0.000, -0.000)
    2/4/15 2:51:42.609 PM coreaudiod[319]: Disabled automatic stack shots because audio IO is active
    2/4/15 2:51:43.232 PM coreaudiod[319]: Enabled automatic stack shots because audio IO is inactive
    2/4/15 2:51:44.087 PM com.apple.launchd.peruser.501[299]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    2/4/15 2:51:46.123 PM AppleScript Runner[11755]: CPSGetFrontProcess(): This call is deprecated and should not be called anymore.
    2/4/15 2:51:47.232 PM KernelEventAgent[71]: tid 00000000 received event(s) VQ_LOWDISK (4)
    2/4/15 2:51:47.248 PM KernelEventAgent[71]: tid 00000000 type 'hfs', mounted on '/', from '/dev/disk0s2', low disk
    2/4/15 2:51:47.253 PM KernelEventAgent[71]: tid 00000000 found 1 filesystem(s) with problem(s)
    2/4/15 2:52:35.679 PM coreaudiod[319]: Disabled automatic stack shots because audio IO is active
    2/4/15 2:52:36.443 PM coreaudiod[319]: Enabled automatic stack shots because audio IO is inactive
    2/4/15 2:52:42.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:52:43.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:53:00.000 PM kernel[0]: Sandbox: sandboxd(11787) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:53:02.122 PM WebProcess[11776]: CoreText: Invalid 'kern' Subtable In CTFont <name: OpenSans-Semibold, size: 15.000000, matrix: 0x0>
    CTFontDescriptor <attributes: <CFBasicHash 0x7fa6d99ac600 [0x101661110]>{type = mutable dict, count = 1,
    entries =>
      2 : <CFString 0x1060f5ef0 [0x101661110]>{contents = "NSFontNameAttribute"} = <CFString 0x7fa6de60a200 [0x101661110]>{contents = "OpenSans-Semibold"}
    >
    2/4/15 2:53:02.133 PM WebProcess[11776]: CoreText: Invalid 'kern' Subtable In CTFont <name: OpenSans, size: 14.000000, matrix: 0x0>
    CTFontDescriptor <attributes: <CFBasicHash 0x7fa6e0914450 [0x101661110]>{type = mutable dict, count = 1,
    entries =>
      2 : <CFString 0x1060f5ef0 [0x101661110]>{contents = "NSFontNameAttribute"} = <CFString 0x7fa6de622c10 [0x101661110]>{contents = "OpenSans"}
    >
    2/4/15 2:53:03.833 PM WebProcess[11776]: CoreText: Invalid 'kern' Subtable In CTFont <name: OpenSans-Bold, size: 18.000000, matrix: 0x0>
    CTFontDescriptor <attributes: <CFBasicHash 0x7fa6de441fb0 [0x101661110]>{type = mutable dict, count = 1,
    entries =>
      2 : <CFString 0x1060f5ef0 [0x101661110]>{contents = "NSFontNameAttribute"} = <CFString 0x7fa6de6642a0 [0x101661110]>{contents = "OpenSans-Bold"}
    >
    2/4/15 2:53:08.288 PM sandboxd[11787]: ([11776]) WebProcess(11776) deny iokit-open IOBluetoothSCOAudioDeviceCoreAudioPlugInUserClient
    2/4/15 2:53:10.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:53:16.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:53:19.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:53:27.297 PM com.apple.quicklook.satellite[11793]: bootstrap_look_up2 failed with 0x44c
    2/4/15 2:53:27.000 PM kernel[0]: Sandbox: sandboxd(11794) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:53:28.327 PM sandboxd[11794]: ([11793]) QuickLookSatelli(11793) deny mach-lookup com.apple.PowerManagement.control
    2/4/15 2:53:49.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:53:53.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:54:22.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:54:23.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:54:32.000 PM kernel[0]: Sandbox: sandboxd(11803) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:54:33.010 PM sandboxd[11803]: ([11802]) mdworker(11802) deny file-write-owner /Users/organicbooks/Library/Containers/com.apple.Notes/Data/Library/Notes/Notes V1.storedata-wal (import fstype:hfs fsflag:480D000 flags:40000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 98275594)
    2/4/15 2:54:33.053 PM sandboxd[11803]: ([11802]) mdworker(11802) deny file-write-owner /Users/organicbooks/Library/Containers/com.apple.Notes/Data/Library/Notes/Notes V1.storedata-shm (import fstype:hfs fsflag:480D000 flags:40000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 98275594)
    2/4/15 2:54:33.095 PM distnoted[11807]: Bug: 12F45: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    2/4/15 2:54:35.000 PM kernel[0]: nspace-handler-set-snapshot-time: 1423079677
    2/4/15 2:54:40.078 PM com.apple.mtmd[64]: attempting to thin because of low free space on Tao by removing 2015-02-04 14:14:19 -0500, estimate 0 bytes to recover, 1 snapshot can be thinned
    2/4/15 2:54:55.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:55:02.634 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e17550> { type = file, path = /Users/organicbooks/Desktop/Try Now/shutterstock_231467593.eps }
    2/4/15 2:55:04.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:55:05.000 PM kernel[0]: Sandbox: sandboxd(11816) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:55:05.940 PM sandboxd[11816]: ([11815]) mdworker(11815) deny file-write-owner /Users/organicbooks/Library/Containers/com.apple.Notes/Data/Library/Notes/Notes V1.storedata-wal (import fstype:hfs fsflag:480D000 flags:40000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 134465379)
    2/4/15 2:55:05.946 PM sandboxd[11816]: ([11815]) mdworker(11815) deny file-write-owner /Users/organicbooks/Library/Containers/com.apple.Notes/Data/Library/Notes/Notes V1.storedata-shm (import fstype:hfs fsflag:480D000 flags:40000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 134465379)
    2/4/15 2:55:13.568 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25ef0> { type = file, path = /Users/organicbooks/Dropbox/Recipes/Spicy Curry Chicken Thighs w:Rice.png }
    2/4/15 2:55:13.634 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e16dc0> { type = file, path = /Users/organicbooks/Dropbox/Recipes/Curry-Coconut Chicken Thighs.png }
    2/4/15 2:55:18.415 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25ef0> { type = file, path = /Users/organicbooks/Downloads/Washing_Machine_X8.dmg }
    2/4/15 2:55:19.422 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25ef0> { type = file, path = /Users/organicbooks/Downloads/backgroun2.eps }
    2/4/15 2:55:19.427 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25ef0> { type = file, path = /Users/organicbooks/Downloads/abstract-green-background-vector.eps }
    2/4/15 2:55:19.472 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c26120> { type = file, path = /Users/organicbooks/Downloads/torn-paper-damask-vector.eps }
    2/4/15 2:55:19.475 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a26900> { type = file, path = /Users/organicbooks/Downloads/vintage-plaid-vector.eps }
    2/4/15 2:55:19.478 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25ef0> { type = file, path = /Users/organicbooks/Downloads/wheat-logo-vector.eps }
    2/4/15 2:55:28.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:55:29.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:55:30.244 PM activitymonitord[11814]: sending signal: 9 to pid: 65
    2/4/15 2:55:30.284 PM com.apple.launchd[1]: (com.apple.metadata.mds[65]) Exited: Killed: 9
    2/4/15 2:55:30.373 PM mds[11821]: (Normal) FMW: FMW 0 0
    2/4/15 2:55:30.380 PM mds[11821]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    2/4/15 2:55:30.442 PM mds[11821]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    2/4/15 2:56:01.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:56:03.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:56:11.000 PM kernel[0]: Sandbox: sandboxd(11831) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:56:12.166 PM sandboxd[11831]: ([11830]) mdworker(11830) deny file-write-owner /Users/organicbooks/Library/Containers/com.apple.Notes/Data/Library/Notes/Notes V1.storedata-wal (import fstype:hfs fsflag:480D000 flags:40000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 98275594)
    2/4/15 2:56:12.252 PM sandboxd[11831]: ([11830]) mdworker(11830) deny file-write-owner /Users/organicbooks/Library/Containers/com.apple.Notes/Data/Library/Notes/Notes V1.storedata-shm (import fstype:hfs fsflag:480D000 flags:40000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 98275594)
    2/4/15 2:56:20.176 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e169c0> { type = file, path = /Users/organicbooks/Desktop/Try Now/shutterstock_231467593.eps }
    2/4/15 2:56:25.174 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25c40> { type = file, path = /Users/organicbooks/Dropbox/Recipes/Spicy Curry Chicken Thighs w:Rice.png }
    2/4/15 2:56:25.221 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e17570> { type = file, path = /Users/organicbooks/Dropbox/Recipes/Curry-Coconut Chicken Thighs.png }
    2/4/15 2:56:34.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:56:43.335 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25680> { type = file, path = /Users/organicbooks/Downloads/Washing_Machine_X8.dmg }
    2/4/15 2:56:43.624 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25680> { type = file, path = /Users/organicbooks/Downloads/backgroun2.eps }
    2/4/15 2:56:43.629 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a26950> { type = file, path = /Users/organicbooks/Downloads/abstract-green-background-vector.eps }
    2/4/15 2:56:43.672 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25c40> { type = file, path = /Users/organicbooks/Downloads/torn-paper-damask-vector.eps }
    2/4/15 2:56:43.674 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25c40> { type = file, path = /Users/organicbooks/Downloads/vintage-plaid-vector.eps }
    2/4/15 2:56:43.676 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a2f330> { type = file, path = /Users/organicbooks/Downloads/wheat-logo-vector.eps }
    2/4/15 2:56:48.954 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c1bdf0> { type = file, path = /Users/organicbooks/Downloads/Super Premium Vintage Resources.rar }
    2/4/15 2:56:52.000 PM kernel[0]: macx_swapoff SUCCESS
    2/4/15 2:57:00.008 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25c40> { type = file, path = /Users/organicbooks/Downloads/General_Motors_Weight_Loss_Diet_Program.pdf }
    2/4/15 2:57:04.830 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771c25630> { type = file, path = /Users/organicbooks/Downloads/backgroun2.eps }
    2/4/15 2:57:04.986 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e10920> { type = file, path = /Users/organicbooks/Downloads/Arun's Nomination Form.pdf }
    2/4/15 2:57:07.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    2/4/15 2:57:08.281 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e10bf0> { type = file, path = /Users/organicbooks/Downloads/Untitled.iba }
    2/4/15 2:57:08.979 PM com.apple.quicklook.satellite[11838]: bootstrap_look_up2 failed with 0x44c
    2/4/15 2:57:09.033 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772912f60> { type = file, path = /Users/organicbooks/Downloads/Marc_Meunch_Landscape_Photography_WEB_1600x900.jp g }
    2/4/15 2:57:09.116 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a26900> { type = file, path = /Users/organicbooks/Downloads/Untitled.tiff }
    2/4/15 2:57:09.222 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a2f330> { type = file, path = /Users/organicbooks/Downloads/Round Ornate Label.png }
    2/4/15 2:57:09.223 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772912f10> { type = file, path = /Users/organicbooks/Downloads/Round Ornate Label.pdf }
    2/4/15 2:57:09.304 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a26950> { type = file, path = /Users/organicbooks/Downloads/Round Ornate Label.tiff }
    2/4/15 2:57:09.387 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e10920> { type = file, path = /Users/organicbooks/Downloads/Ornate Divider 1.tiff }
    2/4/15 2:57:09.389 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe77290f760> { type = file, path = /Users/organicbooks/Downloads/Ornate Divider 1.png }
    2/4/15 2:57:09.000 PM kernel[0]: Sandbox: sandboxd(11839) deny mach-lookup com.apple.coresymbolicationd
    2/4/15 2:57:09.493 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a2bbe0> { type = file, path = /Users/organicbooks/Downloads/Jasmine.pdf }
    2/4/15 2:57:09.577 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772a2f330> { type = file, path = /Users/organicbooks/Downloads/pld_toujourslamour_A_el65.png }
    2/4/15 2:57:09.579 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe774905010> { type = file, path = /Users/organicbooks/Downloads/Screen Shot 2015-01-25 at 7.04.39 AM.png }
    2/4/15 2:57:09.663 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e17570> { type = file, path = /Users/organicbooks/Downloads/Screen Shot 2015-01-25 at 3.39.32 PM.png }
    2/4/15 2:57:09.665 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772c070b0> { type = file, path = /Users/organicbooks/Downloads/abstract-green-background-vector.eps }
    2/4/15 2:57:09.667 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe772e05210> { type = file, path = /Users/organicbooks/Downloads/torn-paper-damask-vector.eps }
    2/4/15 2:57:09.668 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e10920> { type = file, path = /Users/organicbooks/Downloads/vintage-plaid-vector.eps }
    2/4/15 2:57:09.670 PM mdwrite[11653]: XPCValueObject: Can't handle the value <fd: 0x7fe771e18970> { type = file, path = /Users/organicbooks/Downloads/wheat-logo-vector.eps }
    2/4/15 2:57:09.999 PM sandboxd[11839]: ([11838]) QuickLookSatelli(11838) deny mach-lookup com.apple.PowerManagement.control
    2/4/15 2:57:20.000 PM kernel[0]: macx_swapoff SUCCESS

    Hi Joey:
    Thank you for your reply.  Yes multi pathing is in place and failover does occur.  This was my test environment I did first.  I just noticed that of three hosts two reported redundancy link lost (which is normal) but one showed redundancy link and the managment network lost and access to the datastore for VM guests although VM guests continuded to ping normally.  The host however was not pinging in fact as being reported.
    Anyway,  I went forward with production last night and all went as expected with only redundancy link lost during interconnect updates/reboots.  No problems.  So, I believe my test environment has a connection between the two interconnects switched around from when I first set it all up.  There have been some others working in my test area.
    Thanks again,
    Fred

  • When I close Firefox 4.0 RC2, I have four or more instances of "plugin-container.exe" spawn before Firefox (and all of the spawned processes) close. Is this normal/intended behavior?

    These processes seem to be independent of the normal plugin-container process spawned for Flash.

    Probably the easiest way is to download Firefox again from http://www.mozilla.com and re-install it.
    If you want to disable plugin-container, see the section on "Disabling crash protection" at http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • Create dummy schedule line in SO using User-Exit

    Hi ,
    I have one requirement of adding one dummy schedule line before the normal schedule lines which gets added after ATP check in sales order.
    for eg: if for line item 10, system will determine 2 schedule 1 and 2. then i want to add a dummy schedule line before 1.
    so it will be like
    sch line
    1 - Dummy
    2 - system generated schedul eline 1.
    3 - system generated schedul eline 2.
    Please let me know if is there any user excit or any way i can achive this?
    Thanks,

    HI Soni,
    What is the meaning of dummy  schedule line.
    Regards,
    Madhu.
    Edited by: madhurao123 on Feb 25, 2011 5:26 AM

  • How to put UC320 is "Day Mode" if in automatic scheduling?

    If the UC320 is using automated scheduling, how can a local user take the unit out of 'night mode' if they want to open before the normally scheduled time?  Example:  Schedule set for "day mode" from 9:00 to 5:00 M-F.  They have need to open at 8:00 one Tuesday... how do they take the unit out of "night mode"?
    If they have a "force night" button, can they press it twice??
    Chet.           
    Chet Prokop, PE, PhD
    Cisco Select Partner
    IT and Telecom Services - SMB
    Houston, TX       

    Customer is a doctors office and has regular hours for the most. The early entry would work fine with Force Night--and we've set that up that way. BUT... big but... If the office manager or whomever should set night mode doesnt... we have the same issue... how to remotely change scheduling to "night" or even check for them!?!?!
    Once eveyone leaves the building if it's not been set, they're screwed ... or have to physically trek back once this is discovered. For doctors with a downtown office in Houston, that's not going to happen!
    We need some control over setting and overriding 'day' and 'night' modes... even within the web management interface.  I can do this with other $1000 hybrid systems even from a remote call in--plus through web interface or management software. This is a simple button on the interface at minimum--and would relieve a good deal of frustration. This is not the first installation of a 320 at a doc office that this has come up.  ... but it's worth fixing.
    Thanks, Wendy. I appreciate your thoughts.
    Chet.
    Chet Prokop, PE, PhD
    Cisco Select Partner
    IT and Telecom Services - SMB
    Houston, TX

  • Scheduling in Apo

    Hello,
    Normally scheduling and capacity is based on r/3 scheduling time elements i.e setup,m/c and teardown time in R/3.
    What is the parameter for scheduling in Apo and which parameter it will consider while schdeuling and capacity requirement planning?

    The setup, produce and teardown times in R/3 on a operation will transfer to APO as activities in an operation in PDS (PRoduction Data Structure) or PPM (Production Process Model) master data.
    APO Master Data = PDS or PPM which is equivalent to BOM + Routing in R/3
    Hence scheduling and capacity consumption of orders in APO will be based on the PDS or PPM activities.
    Hope this helps.
    Somnath

  • HP Pavilion dv7-4083cl (w/ Intel Core i5 and ATI GPU): Which is its normal temperature?

    Hello,
    I have a question about HP Pavilion dv7-4083cl (w/ Intel Core i5 and ATI GPU):
    Which is its normal temperature?
    Environment: 24 °C (Celcius)
    HWMonitor and Real Temp agrees with the numbers find below.
    The two CPU Cores starts at 37 °C and in about an hour are at 53 °C, with CPU usage under 10%.
    The GPU starts at 34 °C and easly goes to 57 °C, with some peaks at 72 °C
    Regarding "Hewlett-Packard 144B": (under low/idle CPU usage)
    TZ01: starts at 40 °C and very fast goes to 55 °C or 65 °C (and more, under CPU load)
    PCH starts at 59 °C and very fast goes to 76 °C (and stays there)
    GMCH: starts at 40 °C and very fast goes to 55 °C or 65 °C
    ATI Mobility Radeon HD 5470 (TMPIN0): Starts at 34 °C and easily goes and stays at 57-58 °C
    Note: I'm also using a cooler (two fans, under its base)
    If I run Real Temp (v. 3.6) "Sensor Test", the cores goes up to 100 °C , and even a bit more.
    Which is the normal / expected behavior / operational range?
    Steady PCH at 76 °C is it normal?
    TZ01, GMCH at 55 - 65 °C is it normal?
    i5 Cores at 55 °C is it normal? (and easily going to 70 °C or more)
    GPU (ATI) at 57 °C is it normal?
    is it normal to climb up to 100-105 °C under a 5 minutes high CPU usage operation?
    Thanks!

    i roll back to bios F.25 which is the older version of bios that support my device but still suffering from same D90 system overheating error.
    i can't contact hp support or send it to offical hp center currently coz i am from Egypt and i live in far town

  • GRN vs Schedule Agreement validity Date

    Dear All,
    We got very severe issue, we have created the Scheduling Agreements(document type -LP) between the two plants (Cross Company Codes) with the vendor code created under the Account Group : 0007.
    During the creation of the Scheduling Agreements , we have not assigned the Plant code in Vendor Master (In Purchasing organisation data-> Extras-> plant Assignment).
    So the shipping data did not get determined per material in scheduling agreement and scheduling agreements created as the normal Scheduling agreements (NOT as Stock transfer scheduling agreements)
    and plants started doing the transaction(In Production server) as Normal Purchase Sale (by creating sale order and GRN via Scheduling Agreement) .
    But now , it is required to change the process via Sale -Purchase to Stock Transfer , so we have changed the Vendor master and assign the Plant to the vendors.
    But the transaction has been going on already created scheduling agreements. So how Delete/Close the existing  scheduling agreements. and we need to create new scheduling agreements(Stock transfer scheduling agreements).
    I have tried out with Validity period (by shortning the Validity Period) , so that existing SA should NOT be invalid for GRN, but GRN date has no control with Validity period of SA.
    Please suggest how to go about it.
    Regards
    Nitiin

    Hi,
    Try This
    Do not maintain Delievry Schedule in Me38 or you can try with setting Block vendor in Source List or you can change validity period in source list.
    Regards,
    Vikas

  • PopupMenu behavior

    Hi all!
    I have a problem with the JPopupMenu behavior. My popup menu has a submenu:
    JPopupMenu p = new JPopupMenu();
    JMenu menu = new JMenu();
    menu.add(new JMenuItem("1"));
    menu.add(new JMenuItem("2"));
    p.add(menu);
    p.setVisible(true);
    It works, but it doesn't have the 'normal' menu behavior, like the ones in a JMenuBar. I mean when I click on the submenu, the components don't popup. Is there a way to change this with a specific method ?
    Thanks!

    Hello
    Try this:
    JTextArea text = new JTextArea(10,20);
    JMenu menu = new JMenu("Menu");
    JPopupMenu popup = new JPopupMenu();
    JMenuItem mnitm1 = JMenuItem("1");
    JMenuItem mnitm2 = JMenuItem("2");
    menu.add(mnitm1);
    menu.add(mnitm2);
    popup.add(menu);
    // add mouse listener to pop up menu
    MouseListener popuplistener = new popupListener();
    text.addMouseListener(popuplistener);
    class popupListener extends MouseAdapter {
    public void mousePressed(MouseEvent e) {
    showPopup(e);
    try{
    }catch(Exception ex){
    public void mouseReleased(MouseEvent e) {
    showPopup(e);
    private void showPopup(MouseEvent e) {
    if (e.isPopupTrigger()) {
    popup.show(e.getComponent(),
    e.getX(), e.getY());
    This will work!!!!
    Rana

  • Scheduled tasks run fine at first then stop running

    This has been an ongoing issue with every Server 2012 machine that we have running tasks (a buddy of mine has the same issue with 2008 R2).  At first the task will run fine as it should but then out of the blue it will simply stop running.  The
    last run time could be months ago and the next run time will be the normal scheduled time to run.  Last run result is always 0x0.  There is also nothing in the history tab as I assume it's been too long ago since the last time it ran.
    I can't figure out what's keeping these tasks from properly triggering and running.  Now before anyone starts going down a list of settings I should check that I might have goofed up, remember, these run fine at first and which jobs stop running properly
    are completely random.  Also, some of these tasks are Microsoft generated tasks like Windows Backup:
    This happens on MS tasks as well as my own tasks that run fine at first but then just stop.  The only fix on a per task basis that I've been able to come up with is to delete the job and create it from scratch where it will then work forever or get
    stuck.  It's completely random.
    I would greatly appreciate any help on this matter as it's driving me absolutely nuts.

    Hi,
    In order to solve the problem more efficiently I need to clarify some information.
    Are there any errors about the scheduled tasks?
    Here are some links below that could be helpful to you:
    Troubleshooting Task Scheduler
    http://technet.microsoft.com/en-us/library/cc721846.aspx
    Scheduled task not running on Windows Server 2008 but working on Windows XP
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/46a867a0-8432-4b90-abe3-9a5661d1b276/scheduled-task-not-running-on-windows-server-2008-but-working-on-windows-xp
    Task Scheduler did not run on the planned time. (Windows Server 2008 SP2)
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/d817535a-0210-47e9-a0fe-3c6dbf38b777/task-scheduler-did-not-run-on-the-planned-time-windows-server-2008-sp2
    scheduled task not work good on windows server 2008
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/f7baffb3-be5e-4d2d-953d-160e258089e9/scheduled-task-not-work-good-on-windows-server-2008
    Use the Windows Server 2012 Essentials Log Collector
    http://technet.microsoft.com/en-us/library/jj206706.aspx
    Best Regards,
    Amy Wang

  • Strange behavior when Popup LOVs has read-only condition and Bug Report

    Hi,
    I observed an inconsistent behavior of Popup LOVs when the read-only condition is true. In that case the defined lov query is used to map the internal value of the page item to the display value defined in the lov query.
    What is the reason for this behavior? Because if the Popup LOV is in "edit mode" the page item value is just displayed without looking up the display value. The display value is just used for the popup lov. Mapping the value is normally a behavior of the popup key lov.
    -> The result is that different values are displayed if the page item is in edit or read-only mode. That's not really the behavior someone would expect.
    BTW, there seems to be a bug with "Display Extra Values" set to "Yes" in the case read-only is true. If the lookup doesn't return a value it just displays [ ], but because the property is set to yes it should display the value. The Popup Key Lov has the same bug.
    Thanks for bringing some light into that behavior
    Patrick
    Oracle APEX Essentials: http://essentials.oracleapex.info/
    My Blog, APEX Builder Plugin, ApexLib Framework: http://www.oracleapex.info/

    Patrick,
    I've added your comments to a task already in our queue to examine all item types for correct behavior in read-only mode. I've noticed the quirks with display extra values also.
    By the way, still interested in your thoughts re: Re: Bug Report: Images broke when using get_blob_file_src and not authentic .
    Scott

  • Hierarchal Menu Behavior in Swing

    When a user pops up a hierarchical menu, she should be able to drag directly to the desired item in that menu. The shortest path to the desired menu item is usually a diagonal path.
    Under Swing, the user must first drag horizontally into the hierarchical menu and then drag down that menu to select the item, otherwise the hierarchical menu closes. This is very disconcerting behavior for users who are expecting the normal platform behavior (the Mac and Windows allow direct [diagonal] dragging).
    I feel this is a significant problem, but I tried submitting it as a bug and didn't get much interest from Sun. Please post your agreement (or disagreement) to this topic so that I can build a stronger case. Thanks.

    Personally, I find it mildly amazing that Sun showed "no interest" in this issue. It's the lack of attention paid to exactly these sorts of seemingly minor, but actually extremely important, interface issues that has caused developers to look for alternatives to Swing. SWT, anyone?
    If Sun cares about the user experience they will pay attention to this issue, and others like it...

  • 2lis_02_SCL Purchasing schedule line Datasource

    hi,
    I am using the 2lis_02_scl datasource and I am looking for delivered qty field in this datasource. Can any one tell me which field provides Delivered quantiy information.
    Regards,
    Raghu

    The PO or scheduling agreement schedule (requested) quantity, depending if you have scheduling agreements with your vendors,  would be sourced from the same field (BWMNG), where the BWVORG is:
    001 - Normal Purchase Order Schedule Quantity
    004 - Normal Scheduling Agreement Schedule Quantity
    005 - Normal Purchase Order Schedule Return Quantity
    011 - Stock Transport Order Schedule Quantity
    014 - Stock Transport Scheduling Agreement Schedule Quantity
    015 - Stock Transport Order Schedule Return Quantity
    021 - Cross-Company Order Schedule Quantity
    024 - Cross-Company Scheduling Agreement Schedule Quantity
    025 - Cross-Company Order Schedule Return Quantity
    041 - Normal Scheduling Agreement Schedule Return Quantity
    051 - Stock Transport Scheduling Agreement Schedule Return Quantity
    061 - Cross-Company Scheduling Agreement Schedule Return Quantity

  • Scheduling in SNP

    how is scheduling done for orders in SNP
    Thanks

    Hi,
    The main process in SNP before scheduling is the source determination. The Source of supply for a demand will be determined based on various factors like procurement type, Quota arrangements, priority, procurement costs etc. Then based on the determined SoS, the scheduling will be done as a normal scheduling like ECC MRP (with inhouse production time maintained in PDS or other procurement times).
    Please refer the below link for details on Source determination
    http://help.sap.com/saphelp_scm70/helpdata/EN/ef/22b1e4947a324285c2d7b24f117a82/frameset.htm
    If you want to know anything specific, please revert with your question.
    Regards,
    Manimaran M.

Maybe you are looking for

  • ITunes / Windows Video Playback.. (what, you actualy want to WATCH vid's?)

    I'm sure there are several people out there that are having the same or similar problems, but because I can't seem to find them with the exact problem I'm having, I thought a new thread would be appropriate.... Upgraded from 6 to 7 yesterday... music

  • PS CS4 crashing when brushes changed - OSX Lion

    Have just installed Photoshop CS4 on a brand new MacBook Pro supplied with Lion. PS keep crashing when brushes changed in brush selectore with following error report. Have installed Java runtime and deleted preferences file without any resolution. An

  • Pretty gtk2 as root, ugly as non-root? [/SOLVED]

    Heh, this is actually a little bit interesting. I've never ran anything that requires X as root until just a few minutes ago and realized that running applications such as pidgin and firefox as root, they are significantly prettier than what it looks

  • My iPod Nano 5th Gene Play button is not working

    My iPod Nano 5th gene's play button stopped working recently, meaning I can't pause my music and I have to use the "sleep" option to turn it off! I've had it for nearly 3 years, so the warrant is up, and I live no where near an Apple store.

  • ORA-04042: procedure, function, package, or package body does not exist

    getting following error I have logged on as sys GRANT EXECUTE ON CTXSYS.CTX_DDL TO public ERROR at line 1: ORA-04042: procedure, function, package, or package body does not exist does it need Oracle text installed comp_name Oracle Database Catalog Vi