A collections of questions on scheduling information

Hello, I am doing some research on QoS management, and I need much scheduling information. So I got some questions.
1 Based on the oracle scheduler, I want to design my own scheduler(non-preempt). That is, once a job is finished, the scheduler need to schedule new jobs based on some job information. So how can i design such a scheduler? I think it should be a job in the database, but it is neither periodic nor event-based.
2 Each time my scheduler runs, it probably schedule a same job to run. If the former instance of this job has not completed, the new instance will be skipped. How can I disable the former instance and let the new instance run?
3 I will configure a periodic job which will collect all of the statistic data at the beginning of each period. How can I read the duration time of each job which has been completed? I know I can read the duration time from ALL_SCHEDULER_JOB_RUN_DETAILS,but the accuracy of the duration time in that view is only second. I need better accuracy. Another problem is, if a job has completed several instances in the last period, how can i differentiate them from each other. Because all of the instance number is 1.
4 And also, I need to know how much CPU time all of the jobs in the last period have consumed. How can I know the cpu time of each instance of each job?(not only the jobs which have completed but also those jobs which are running.) (because I need add them together and write some algorithm to control it not exceed 80% of the period.)
I am sorry to put so many troublesome questions together. Hope somebody can give me some guidance. Thanks a lot.

Hi,
I'll try to answer some of these questions briefly.
1 Based on the oracle scheduler, I want to design my
own scheduler(non-preempt). That is, once a job is
finished, the scheduler need to schedule new jobs
based on some job information. So how can i design
such a scheduler? I think it should be a job in the
database, but it is neither periodic nor
event-based.The design of a new Scheduler is not something I can really advise on. Perhaps you could have it based on a master process which is a Scheduler job that runs frequently (once every minute or so).
2 Each time my scheduler runs, it probably schedule a
same job to run. If the former instance of this job
has not completed, the new instance will be skipped.
How can I disable the former instance and let the new
instance run? The Scheduler does not allow multiple instances of the same job to run. If you want multiple instances of your action to run you need to create a scheduler program and then you can have multiple jobs pointing to that program. Those jobs can happily run in parallel
3 I will configure a periodic job which will collect
all of the statistic data at the beginning of each
period. How can I read the duration time of each job
which has been completed? I know I can read the
duration time from ALL_SCHEDULER_JOB_RUN_DETAILS,but
the accuracy of the duration time in that view is
only second. I need better accuracy. Another problem
is, if a job has completed several instances in the
last period, how can i differentiate them from each
other. Because all of the instance number is 1.The jobs will have different requested_start_dates . To gain better accuracy you can use log_date-actual_start_date from the ALL_SCHEDULER_JOB_RUN_DETAILS view.
4 And also, I need to know how much CPU time all of
the jobs in the last period have consumed. How can I
know the cpu time of each instance of each job?(not
only the jobs which have completed but also those
jobs which are running.) (because I need add them
together and write some algorithm to control it not
exceed 80% of the period.)You can do this by querying both ALL_SCHEDULER_JOB_RUN_DETAILS and ALL_SCHEDULER_RUNNING_JOBS .
Hope this helps,
Ravi.

Similar Messages

  • How can I share my schedule information with my wife on her accounts and devices?

    My wife and I have separate accounts in our MacMini and MacBook.  We each have an iPhone.  She uses GMail.  I use Mac Mail.  How can I share my schedule information with my wife on her accounts and devices?

    It is not advisable to follow the above suggested method. The following will do what you want without complications.
    1. On your Mac, go to http://help.apple.com/icloud/#mm6b1a9479 and follow the instructions to share a calendar privately. If you have more than one calendar you want to share you will have to do each individually. You can choose whether she is able to edit it or whether it should be read-only.
    2. If your wife does not have an iCloud account she will need to obtain one. When you share a calendar and nominate her to access it she will receive and email. All she has to do is to open the email and click 'Join Calendar'. This will add the calendar to her Calendar app on all devices and on icloud.com without affecting any other data. Again, this will have to be done individually if more than one calendar is involved.

  • Question about Scheduled Task

    Question about Scheduled Task
    RequestCenter 2008.3
    Oracle 10g
    Websphere 6.1.27
    IE 7
    Hi:
    I have tried to get a scheduled task to work without any luck.  I am referencing a date/time field on the form and the task goes to "Scheduled", but never moves to "Ongoing".
    I've opened a case with support, but was wondering if anyone has gotten this to work.
    Thank you
    Daniel
    Safeway Inc.

    We just went through this too. If the plan is fairly complex, and has allot of conditional tasks you will have difficulty.
    The explanation I got from Shweta is that the calculation that determines the OLAs before my scheduled task was to start looks at ALL the potential tasks and combines them, essentially saying the duration is much longer than what you think it should be, ie the sum of all potential task OLAs, not just the tasks that became active.
    Bottom line if your scheduled date is with

  • Querying LOV schedule information

    Is there any way to query the LOV schedule information using the Business Objects Query Builder?  We are able to pull data about Crystal reports and their schedules into a database to do more thorough auditing and we would like to do the same with LOVs.  I know these are treated as reports themselves so I'm wondering how we can get at the backend data of those LOVs that are scheduled.

    I didn't think about the query tool restricting the number of rows returned.  I'm sure that is what is happening with Query Analyzer.
    Executing "select count(*) from jobrun" will give you an accurate count of the number of rows in the table since it only returns one row.
    "Trigger History Retention" does not determine how many days "Job History" will be retained.  Click on the Help Icon (?) for a description of the "Trigger History Retention" setting.
    The Defaults tab has the default value for "Job History Retention".  This determines how long Job Activity is retained.  If this is 30 days, then, if a job has not run in the last 30 days, the job may not have entries in the jobrun table.
    When a job is created, the "Job History Retention" value is used to set the "History Retention" of the job (found on the Job Definition, Options tab).  If you have never changed the value in the Defaults tab, then it is likely all your jobs have this value.  But if the Default value was changed at some point, then the jobs created before the value was changed will have one value, the jobs created after the change will have another value.  To determine the History Retention value for a single job, you can check the Options tab of the Job Definition.  To find out if all your jobs have the same value, you can run this query.
    select distinct jobdtl.jobdtl_retnsn
    from jobdtl
    If your default for "Job History Retention" was never changed, this will return a single value.
    If you know a job that runs infrequently, you can look at the History tab of the job.  I'm not sure what to expect.  If the job only runs quarterly, for example, will there be no history shown if your Job History Retention is set to 30 days?
    It may be possible to determine the last time a job ran by querying the msglog table.  This table can be quite large, so you have to be careful constructing your queries.  The Logging tab of the System Configuration specifies how long these records are retained.
    Tracy

  • The Scheduling information didnt get migrated.

    Hiii
    I have exported work repository for migration from one server to another.
    Everything has been migrated apart from the scheduling information.
    What can be the flaws ?
    Please help.
    Regards
    Manoj.

    I can't say that I've seen this error in past versions or in SP4.  And it doesn't look to be referenced in the errors guide either.  But these are things to consider...
    What datasource is the information space using?  Does it only fail when using one type of database or others as well?
    Is it only your previously created information spaces from patch 12 that fail to schedule? or newly created ones as well?
    Try simplifying the information spaces to only 2 or 3 dimensions and 1 measure.  Can you get to a point where something schedules successfully and build on that?
    Was ther ean error code that was displayed with the message?  Usually it'll show something similar to "PS 30001".  It might make the error easier for you or others to search on.

  • Security questions have incorrect information how do I edit the information?

    Security questions have incorrect information how do I edit the information?

    How to reset your Apple ID security questions.
    Go to appleid.apple.com, click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. (If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email)
    Go to the Password & Security section on the left side, and click on the link underneath the security questions that says 'Forgot your answers? Send reset security info email to [email]'.
    This will generate an automated e-mail that will allow you to reset your security questions.
    If that doesn't work, or  there is no rescue email link available, then click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later.
    Next, go to https://getsupport.apple.com
    (If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services')
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.
    Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.

  • Is there some api to modify the schedule information?

    hi all,
    Is there some GP API to modify the schedule information?
    for example, we just want some users to modify some process's schedule time,not all processes.
    So we must develop some web dynpro application.
    So is there some api to modify GP'S schedule?
    Thank you.
    Best regards,
    delma

    HI all
    I followed this help link:
    http://help.sap.com/saphelp_nwce10/Helpdata/EN/2b/ae193799564c26ab382f2d43ecc1bb/content.htm
    It seems working,except when i use this method:
    GPScheduleFactory.createTimingRecurrentMonthly
    I found it seems make a Recurrent Daily schedule except a recurrent monthly.
    I am confused.
    Can anybody help me?
    Thank you.
    Best Regards,
    delma

  • A question viewing certifcate information via the padlock symbol in IE 11 (works on Chrome brower)

    Hello All
    Can someone please help me with the following questions,
    J
    1:
    I have a CA whose CA certificate has an Issuance (aka certificate) Policy.
    Next I created a CSR for a WEBServer certificate, I created the CSR by first creating a .inf (request file) containing the usual including the following
    [RequestAttributes]
    CertificateTemplate=WebServer
    OID=1.3.6.1.5.5.7.3.1
    IssuancePolicy="My Certificate Policy"
    OID=1.3.6.1.4.145389.1.1.1
    Turned the above into a CSR (base64 encoded) then submitted and retrieved the relevant certificate from the CA
    If I open the certificate flat file the resultant certificate has the relevant Issuance Policy listed under the section
    ‘This certificate is intended for the following purposes’
    So all good so far
    Next I install the certificate to the WEB Site and bind it etc. When I go the WEB Site e.g.
    Https://TestSite the certificate works and the traffic is encrypted etc… e.g. click on the padlock in Internet Explorer provides the expected information, but when I click on View Certificate via this padlock symbol; in Internet
    Explorer the certificate come up OK but under
    ‘This certificate is intended for the following purposes’
    It does not show my issuance policy e.g. just the standard application policy for a WEBServer cert.
    If I then look under the details/extensions tab of the certificate it does show certificate policy under the certificate policies extension, so looks OK from the extensions tab, but policy does not show up under ‘This certificate is intended for the following
    purposes’ when certificate is viewed via padlock on IE but does show up if I open the certificate flat file (either original certificate file or copy to file then view certificate as a flat file).
    The OID for the policy is registered in both active directory and local OID databases.
    So the question is why do I not see the issuance policy when viewing cert via padlock in IE but does when viewing flat file.
    I am using IE 11.x
    When doing the same thing from Chrome browser the certificate policy does show up OK, therefore is this a possible bug with IE 11.x
    Thanks All
    AAnotherUser__
    AAnotherUser__

    Hello Brian
    Thanks for the reply,
    The OID is in the Issuing CA Certificate (online CA) e.g. was part of the CAPolicy.inf file when installing the Issuing CA. The OffLine Root and OffLine Policy CA have the All Issuance Policy set in their CA Certificates.
    briefly as mentioned above when opening the cert (.cer) as a flat file by double clicking on it you can see the Issuance Policy listed as expected. When viewing the same cert via Internet Explorer (v11.x) PadLock > View Certificate it shows the Application
    Policy, but not the Issuance Policy (e.g. in the general tab) but does show the Issuance Policy under Extensions Tab. If I use Chrome, click on the PadLock > View Certificate it does show the Issuance Policy (as it always does when opening the flat
    file).
    Therefore was kind of wondering if a Bug in IE, when doing a CertUtil -f -urlfetch -verify Cert.Cer it passed all tests and shows it was validated against the Issuance Policy OK, therefore  perhaps bug in IE
    No big deal, just wanted to know if any one else saw this or was another explanation
    Thank you
    AAnotherUser__
    AAnotherUser__

  • SD create Collective delivery document against scheduling agreement.

    Dear freinds,
    I have created  scheduling agreements for single material , and updated forecast deliery agaisnt IDOCS,
    now I want to make a single delivery agaisnt four different materials.
    I use Transaction VL 10 for Delivery due list and  selected diff. materials four items,executed  backgroud run,
    system is creating two delivery documents instead of one.
    Please advise me how to get single delivery document against multiple delivery due items.
    in customer master i marked to order combination, partial delivery allowed up to 9 deliveries
    Regards
    Dilip

    Excellent information !
    I understood what you have mentioned .
    Just I need your clarifications for my below queries to fix this issue .
    There are 6 line items in this scheduling agreement .
    For 3 line items , delivery schedule date is 02/08/2008 . for another 2 line items, delivery schedule is 05/07/2008 . due to this different delivery schedules for line items  in scheduling agreement . whenever  user creates delivery , delivery split is happening .
    In order to avoid this problem , can ask user to change delivery schedule for another 2 line items to 02/08/2008 from 05/07/2008 . ?
    If user change this delivery schedule  for this line items , is there any ramification in anyway ?.
    Thanks In Advance

  • LX26 schedule information

    LX26 schedules the bin count based on ABC indicator specified in the material master throughout the year. Is there a standard report which will give out the information of what % of this schedule is complete at any given time of the year based on material?

    try transaction LX25

  • Server-Client and collections/syncronization question

    Hi guys, I am learning about server and client relationships and was playing around with some code.
    I have a catalog on Server machine that multiple clients need to read and modify. I set up multi thread server with sockets and I/o that work well when several clients connect to it. My problem is with catalog itself.
    Catalog is located in a file on a Server Machine. I was thinking of reading catalog into a collection (either set or list)and then sending the info to the client somewhow. I realize that collection would have to be static so that changes would be made to it with multiple clients and I understand that some modifying or update methods should be syncronized. So my questions are
    a) How do I create the collection (set or List) from the text file?
    b) Is there some method like syncronizedSet(set s) or something?
    Any suggestions?
    THANK YOU!

    Who's this Kayaman fellow with a strikingly similar
    nick as myself?
    I bet he's a handsome devil too, in addition to his
    superb coding skill and razor sharp wit.It's almost like looking into the mirror isn't it..
    twilight zone music

  • Question on Schedule Line category in Sales Order not relevant to MRP

    Hi experts,
    I want to know whether the sales order having any schedule line category like CP, CN, etc will not be relevant for MRP. In other words, If I do the MRP run for the Sales Order Requiremnt having any Schedule Line Category in particular will not generate any procurement proposals like Planned order/ Purchase Requisitions. Please advice me on the same.
    Regards
    Brijesh

    Dear Brijesh,
    Please find some info related to scheduled lines below,
    The various schedule line categories are controlled in different ways:
    The schedule line AT in inquiries is used only for information.
    No requirements are transferred and no availability check is carried out for the schedule lines BN and CN.
    Requirements are transferred and the availability of the material is checked for the schedule lines BP and CP.
    No stocks are managed for the schedule line categories BT, CT and CX. No goods issue is posted for the categories BT and CT. However, goods issue is posted for CX.
    The schedule line categories BV and CV are controlled in the same manner as the categories BN and CN. However, requirements can be passed on for analysis purposes.
    Goods receipt is posted for the schedule line DN in a returns document.
    The schedule line categories CN, CP, CT, and CV are relevant for delivery; the other schedule line categories are not.
    *Control Elements for Schedule Line Categories
    Different schedule line categories are permitted according to the sales document type and item category you are using. You can use control elements to tailor the schedule line categories to meet the special demands of your installation. You can also define new schedule line categories.
    Hope this helps.
    Thanks
    Murtuza

  • Questions about divulging information about future features

    Good morning,
    I'm making my way through this thread for the first time.
    As someone who has passed the California Bar and who has been a stockbroker in the past, I would like to comment on the statement of Steve Forde, who was the Senior Product Manager for Visual Effects for Adobe for portions of 2011.
    Steve said,
    "Unfortunately - we get stuck in a legal pinch about commenting on ANYTHING that may or may not be in future products, off the record or otherwise."
    I'm asking that you consult your internal SENIOR legal counsel again regarding this statement that you assert prohibits you from giving any details whatsoever about what the Adobe Team may or may not aspire to having in future versions of After Effects.
    I'm asking this of you for a couple of reasons.
    Firstly, no attorney denies that the law changes over time and recent court decisions have made shareholder derivative lawsuits much less popular as a way for the plaintiff's bar to make a quick buck by extorting money from companies who may have made aspirational statements to shareholders or others in conference calls or elsewhere.
    As I understand the current trends in Delaware Law, (which, as the situs for quite a few corporations governs large swaths of their conduct) as long as appropriate disclaimers are clearly communicated at the time of the aspirational statement, such language is now permissible.
    Such standard disclaimers could include language such as
    "we cannot guarantee whether any feature discussed will appear within one year or within five years or whether it will ever appear at all.  It is currently a goal of the design team to reintroduce this feature, but we reserve the right, in our exclusive discretion to change that decision for any reason whatsoever, without consequence.
    Additionally, you are vested with no rights to rely on any assertion or representation made based on any such aspirational statement and we insist and demand you consult an attorney before embarking on any course of conduct, such as purchasing stock or altering any current or projected business plan, based in any manner upon what we say here.
    However, given the above caveats, it is the current goal of the Adobe design team to reintroduce this feature within the next three releases of AE again, subject to change at our sole and exclusive direction in any manner, time or mode of our choosing, without prior notice of any kind."
    If you had a standard disclaimer such as the above that you attached to any and all such statements (by having it appear within the signature block of any Adobe employee posting to this forum), it could take conversations such as this to a more rewarding level for both Adobe staff (who could share their very profound dreams and aspirations with us) and the Adobe community at large, which provides inspiration and helpful feedback to Adobe employees seeking to assist us.
    Then the focus could shift to whether or not you were divulging trade secrets.  But it would still permit you to be more informative in a general way.
    So I ask that you run this by your SENIOR legal counsel again.   Remember, just as there can be different ways to tackle the same 3D graphics animation challenge, each with rewarding results, attorneys similarly can vary from attorney to attorney and new and bright ideas on how to approach such issues do occur from time to time, especially in light of the massive favorable swings in case law supporting the rights of massive global corporations such as Adobe viz a viz the rights of the little guy.
    Sincerely, Matt Dubuque
    Here is Steve's quote in its entirety, from May 26, 2011:
    Unfortunately - we get stuck in a legal pinch about commenting on ANYTHING that may or may not be in future products, off the record or otherwise.
    That being said, as Michael explained in a previous post, Vector Paint got stuck in the conversion of AE to 64 bit.  It's something we hear quite a bit from our users that Vector Paint is important.  Again - wish I could give you more than that, but we are bound by very strict rules.
    Therefore - it is important to us, and the more we hear via this form the more likely it is to get resources behind it in a future release. Again I realize it is impersonal, but the results of this form are sent via email to a real human every time someone hits submit; then that person brings the results of submission to a weekly meeting on the AE team where we discuss features and scheduling.
    Steve
    Sr. Product Manager - Visual Effects
    Adobe Systems Inc.

    Attaching an appropriate disclaimer may be fine for an attorney to dot all the i's and cross all the t's, but there is one thing it will NOT do: it won't stop people from misinterpreting what they read.
    Most people go by what they PERCEIVE to be true and not the ACTUAL truth, a fact that people in marketing like me deal with all the time.
    Steve Forde might write the following totally hypothetical and totally fictional line in a blog:
    "We're thinking about a feature for a future version.  Right now we call it the Clean Plate Generator.  You would be able to shoot a single clip, panning and tilting the camera as desired, and After Effects would automatically create an image whose total size matches the totality of the image shot in the clip.  It would even remove selected foreground subjects such as a stray person who inadvertantly walks into the shot."
    Sounds great, yes?  And with your proposed disclaimer, all would be good; Adobe would have covered its corporate pink posterior.  Or would it?
    Do you wish to speculate how many people would read that as a statement of a definitely-going-to-be-there feature in the next AE version? 
    Can you imagine the can of worms that would open when this fictional feature isn't in the next version? 
    Would it really be worth the massive and expensive fence-mending campaign Adobe would have to undertake among angry users who were erroneously looking forward to this fictional feature? 
    All of which could have been avoided simply by not saying a word?
    I can see where attorneys may like a hypothetical situation as the one above: they could charge more billable hours!  I doubt Adobe would like it, however.
    Legalese is one thing, maintaining happy customers is another, and there is no amount of legalese that can overcome people's nasty tendancy to perceive what they read as what they WANT to read instead of what is actually written.
    If people would read what was actually written, there would be far fewer posts in this forum that say in essence, "Hey, how come it takes two weeks to render ray tracing on the brand-new HP student laptop  I just got from Wal-Mart?"

  • Question about Scheduling WOL

    I have been testing the WOL stuff in Zenworks. I am trying to confirm something. When configuring the schedule for the wake on lan service object, is this just for when this object will check for any policies for waking up the machines. I have found that the only way that I can get the machines to wake up with the shedule is to set the schedule in the policy then stop and restart the WOL service on the Netware server. (I have only been testing this for one afternoon) If I change the WOL policy schedule to wake up the machines, will these changes be automatically recognized without unloading and reloading the WOL service on the workstations.
    Thanks in advance for any information or direction.
    Brian

    On Fri, 22 Oct 2004 11:28:38 GMT, Brian wrote:
    > I am trying to confirm something. When configuring the schedule for the wake on lan service object, is this just for when this object will check for any policies for waking up the machines.
    yes..
    the wake up itself is configured in the server package ADD wol policy
    Marcus Breiden
    Please change -- to - to mail me.
    The content of this mail is my private and personal opinion.
    http://www.edu-magic.net

  • Collections.sort question

    Hi,
    This is my question. I have the following classes
    class A {
         int num = 1;
    class B extends A implements Comparable<B>{
       int count = 0;
       public int compareTo(B b) {
            return count - b.getCount;  
      public void setCount(int count) {
            this.count = count;
      public int getCount() {
             return count;
    }After i put the a couple of the B classes (after setting count) in a LinkedList of type A, i get a problem trying to sort them. The compiler gives me a variable Collections error on the Collections.sort
    Any ideas on how to solve this would be appreciated.
    Thanks

    Are you talking about this A* algorithm? (I've never heard of it before.)
    http://en.wikipedia.org/wiki/A-star_search_algorithm
    The code you have with the "instanceof" test might work. Not sure what the goal is, or how the algorithm works (I didn't read the above link in detail), so I can't say for sure whether it will "work" for what you are doing. Once you sort the "B" objects, what do you need to do with that sublist (i.e., with the bList in your code)?
    I've never used generics, so I don't know much about them. Is it possible to make "A" Comparable, giving a dummy implementation to compareTo (i.e., maybe even just make it always return '0' [all values are equal]), and then have "B" implement Comparable such that B's compareTo will override A's version? I don't know if it is possible (or even desirable)--just a thought.

Maybe you are looking for

  • "Symantec Class 3 EV SSL CA - G2" intermediate Certificate Authority is not trusted by Firefox ?

    ''locking as duplicate of [https://support.mozilla.org/en-US/questions/1014430 /questions/1014430]'' Hallo We recently purchased a certificate from Symantec. It's intermediate authority is Symantec Class 3 EV SSL CA - G2, but Mozilla firefox doesn't

  • Attach PDF to PO object services list works for ME23N but not ME22N

    Manualy attach a PDF file from users PC to a PO. The attachment works for ME23N as described in SAP documentation for creating an attachment to the object services attachments list. When ME22N is used the "attachment created"  message displays but ex

  • Importing RAW format files into iPhoto 08

    Hi Guys, I searched the back catologue and couldn't find any refs so hopefully this is a valid new post. I use iPhoto 08 on an iMac and have always worked with importing jpegs from my cheap but faithful old camera. I now have a nice sexy (& expensive

  • Why are some channels offered on Select TV service not offered on Premium?

    We get the Premium TV Service (we're in Maryland).  The lower-priced Select service offers a number of channels that are not offered on Premium (but are offered on the higher priced plans).  We're particulary interested in the BBC chanels, but there

  • Error in web template executing

    I gt the following error in web application desginer when I run my template: At executing Web Planning Template in web-brouser system return errors: Message: "The status of "QUERY_VIEW_DATA_PROVIDER" "DP_1" may only change during command processing".