Looking for job execution from backend

All,
I need a bit a help. OEM apprently doesn't keep snapshots after the database is shutdown and restarted. What I'm looking for is a way to view what jobs are schedule and had run within the last twelve hours from SQL*Plus.
Any ideas?
Thanks,
Bobby

As the sysman user...
SELECT job_owner
,job_name
,target_name
,target_type
,job_type
,start_time
,end_time
,status
FROM sysman.mgmt$job_execution_history
WHERE start_time BETWEEN (SELECT SYSDATE - 12/24
FROM dual)
AND SYSDATE /* jobs executed in the last 12 hours */
OR start_time > SYSDATE /* OR jobs scheduled in the future */
ORDER BY start_time DESC;

Similar Messages

  • Looking for an example from app gallery that uses WAAD for identity

    I'm looking for an example from the app gallery (http://azure.microsoft.com/en-us/gallery/active-directory/) that uses WAAD for identity. I need one the show our business what the process would look like for an organization signing up for a SaaS offering
    via the App Gallery. I know all the Microsoft applications use WAAD but I was hoping to find a third-party example.  What I mean is an app where all tenant and user identity is done using WAAD as opposed to federated identity.

    I doubt that what you are looking for exists yet.
    Cheers,
    Markus
    Markus Vilcinskas, Knowledge Engineer, Microsoft Corporation

  • Looking for job PDF resumes vs html or doc resumes, what gives?

    Hi,
    I've been looking for jobs and most of the sites that want my resume, monster, creative group, etc, all want it in doc or html format? what gives??? I designed this great looking resume in InDesign that converts well to PDF with nice fonts and I can't even use it !!!! Now I have to resort to times and other fonts using word to make sure that my resuem at least looks somewhere close to what it should be. What happened? I thought PDF was supposed to be used by all? why does everyone want this stuff in word?
    Please shed some light on this for me,
    Thanks,
    Stan

    stan,
    >In reference to post 3, is that a bad thing? Should I be wary of employers trying to 'get my guard down'???
    Yes. If I were interviewing, I would try to get you to relax and feel at home -- and then see how you, as a potential employee, handle that. I want to see if the person has a tendency towards office behavior that could be inappropriate or that does not fit in with my office environment. In today's market, I'd also be scouring Facebook and other social networking sites for info on candidates I'm considering.
    And for the interview, generally dress and act appropriately for going out on a sales call for the potential employer's clients -- if hired, you may be expected to do that.
    As for portfolio presentation, personally, I'd rather the portfolio binder be like the frame around a picture, not an in-your-face statement. Do you want interviewers to remember the binder or its content? But other folks running with more arty clients may have a different spin on this than I. And always stick a few extra résumés in the portfolio; the designed ones are fine there.
    I once had a portfolio sent to me for review that was held together with more elaborate folds and strings than an origami dog walker. I had several additional portfolios still lined up with little time to review them. All I wanted to do is rip the damn thing open. And I can't remember anything about the work inside.
    And network. Most jobs are through networking with friends, family, neighbors, acquaintances and sites like LinkedIn, etc.
    Neil

  • I am looking for educational posters from Apple or for Garageband, if they exist. I'll be teaching a new class for middle school using Garageband next year. Thanks!

    I am looking for educational posters from Apple or for Garageband, if they exist. My school district will be teaching a new class for middle school using Garageband next year. I'd love to make the rooms look awesome! Can anyone hook me up? Thanks!

    lucky14life wrote:
    first i was wondering what everyone thinks about macbooks compared to let's say another pc like hp,dell,etc.... i have been told that i'd have to be dumb to get a machine with windows vista on it,so that is why i have turned my focus to a macbook because i have heard they are pretty good and worth it...
    I personally like my MacBook better than any other computer I have ever owned. I like being able to use windows when I need to but not being tied to it. My wife bought an HP with Vista and it doesn't seem to bad. Lots of updates at least one a week. Mostly graphic card drivers update.
    also is it true that if you upgrade let's say the memory,hard drive,etc it won't be covered in the warranty/apple care plan??
    Only two things you can upgrade on a MacBook is the Hard drive and Memory. It will not void the warranty. This is apples word on it. DIY Warranty Info
    I would just like to ask for people's opinions please on purchasing one of these i am currently a senior in college and will be using it next year for grad school,need to replace the one i currently have...
    Be sure you can live with the graphics. If you do a lot of graphics work you might want to consider the MacBook Pro. I use my MacBook for video editing using Final Cut Express HD and it works well. The MB is also not very good for gaming if you are into that. The integrated chip set doesn't work well with 3D games.
    also any other ideas on getting iwork or office, a hard plastic case or a skin,thanks alot for anyone's input it is greatly appreciated.... i am looking to get one once leopard comes out thanks!!
    Depending on your school may be a factor in what you choose. I use iWork and it is pretty good. You could also try NeoOffice or Open Office. They are good also. Office is supposed to be coming out with a new Mac version but not sure yet how it will work.
    Be sure to ask for the student discount when you purchase the computer and software. It adds up.

  • Search Help for Company Code from Backend

    Hi experts,
    How can I make a SH for company code from backend system? I already made a SH for account assigments from backend with USAGE_SH_F4  functioanality, but i don't know whether I can use it for Company code or not? And how?
    Best Regards,
    Mikhail.

    I need functionality where I will manually maintain backend system, and then I need bind search help for this backend system with my input field for web dynpro. For Account Assignment I use this: http://scn.sap.com/community/srm/blog/2014/01/08/standard-account-assignment-search-helps-in-custom-srm-developments
    But what should I use for company code?

  • What to look for in Execution plans ?

    Hi Pals,
    Assuming the query execution is slow , I have collected the xml plan. What should I look for in the actual execution plan . What are the top 10 things I need to watch out for?
    I know this is a broad and generic question but I am looking for anyone who is experienced in query tuning to answer this question.
    Thanks in Advance.

    Reading execution plans is a bit of an art. But a couple of things:
    1) Download and install SQL Sentry Plan Explorer (www.sqlsentry.net). This is a free tool that in msny cases gives a better experience to look at execution plans, particularly big and ugly ones.
    2) I usually look for the thickest arrows, as thickness indicates the number of rows being processed.
    3) Look for deviations between estimates and actual values, as these deviations are often the source for bad performance. In Plan Explorer, you can quickly flip between the too. In SSMS you need to look at the popup for every operator. (But again, it is
    the operator with fat arrows that are of most interest - and those before them.
    4) The way to read the plan is that the left-most operator asks the operators it is connected to for data. The net effect is that data flows from right to left, and the right-hand side if often more interesting.
    5) Don't pay much attention to the percentages about operator cost. These percentages are estimates only,
    not actual values. They are only reliable if the estimates are correct all the way through - and when you have a bad plan that is rarely the case.
    This was the overall advice. Then there is more specific one: are indexes being used when expected? Note that scans are necessarily not bad. Sometimes your problem is that you have a loop join + index seek, when you should have had two scans and a hash join.
    Try to get a grip of how you would process the query, if you had to do it manually. Does the plan match that idea?
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Electrical Engineer with automated test experience looking for job in San Antonio Area

    I am an Electrical Engineer with 33 years of experience. Much of my experience involves computer programming with an emphasis on electrical systems, either controlling equipment or automated testing. I have experience in numerous languages, most recently LabView, LabWindows/CVI, and TestStand, but also including 'C', Visual Basic, FORTRAN, and Z80 assembler. I have most recently worked in the MS Windows environment, but I have worked in the UNIX environment as well.
    In addition to programming I have done some hardware design and equipment specification. I have done drafting of schematics in Visio, but I also have some experience with AutoCAD. I have written user's manuals and done hardware/software integration. I feel I have a broad range of experience in many areas of engineering and programming. I also feel that my engineering background helps be to understand the needs of the customer and thus be better able to translate those needs into the control or test program they need.
    I currently live in San Antonio, Texas and am looking for a job in this area. A job on the south side of Austin might be considered if I could tele-commute or work in my home with occasional trips, eg. weekly, to Austin.

    I would like to speak to you about your current work situation and the type of position you may be seeking. Currently, I am looking to hire experienced LabView programmers/Project engineers for a long-term opportunity. The following is a brief job description:
    LabView Programmer/Project Engineer
    Albuquerque, New Mexico
    The company follows the industry with LabVIEW coding techniques. Using standards as old as VXI Plug-n-Play and as new as the parallel loop Event Structure / QueuedState Machine. This code is used as the centerpiece for Test & Measurement systems that span most industries including military/aerospace, biomedical, semiconductor, automotive and telecom.
    Candidate will handle LabView integration projects from beginning to end. Will work closely with customers to understand requirements, participate in bid process, manage timelines on projects, perform LabView programming, and handle customer questions and concerns. The position requires 60% programming, 20% hardware design and test, 20% customer interface and project management. Prefer candidates with 7 to 10 years of LabView programming experience.
    Ability to get a DoD security clearance required.
    Please email me at [email protected] or call Sun Vega 505-342-5013 or 800-222-8406.

  • Young labview guru with B.S. degree looking for job in mid-atlantic region

    Hello,
    I recieved a B.S. degree in materials science engineering from cornell university in december '04.  I am currently working as a materials engineer but I am looking to make a switch to a job that will make better use of my programming / LabVIEW talents.  I am looking for something in the Mid-Atlantic region or New England.
    Please email me at [email protected] and I will gladly send you my resume.  Feel free to call me at 412.874.8740 with any other inquiries.
    Thanks,
    -Zach Samuels

    Instrumentation Engineering, LLC is looking for an experienced Test Engineer who is proficient in LabVIEW and systems integration. 3-5 years experience preferred. Competitive salary and benefits.
    Instrumentation Engineering is located in Oakland, New Jersey and has been in business since 1969. IE is a engineering company whose sole focus is ATE Systems design, fabrication and integration.
    We currently have one opening in the Engineering department and are currently accepting Resumes.
    Please email your resume to:
    David Rosenthal
    Vice President
    Instrumentation Engineering
    http://www.ietest.com
    [email protected]

  • Volunteer is looking for job.

    Hello
    I am a physicist, my expertise is spectroscopy (light). I have a small experience in LV and Vision (level with CLAD). I designed a few applications for cameras (FireWire) and picture analysis. I'm looking for new interesting tasks with Vision but if you give me a chance to work with data acquisition (GPIB) it will be nice. I have my own computer. The one and only problem is I want job in Montreal, Canada.
    Remember: I do not want to earn money. I want to learn by experience.
    Message Edited by wd40 on 08-07-2008 09:09 AM

    As the sysman user...
    SELECT job_owner
    ,job_name
    ,target_name
    ,target_type
    ,job_type
    ,start_time
    ,end_time
    ,status
    FROM sysman.mgmt$job_execution_history
    WHERE start_time BETWEEN (SELECT SYSDATE - 12/24
    FROM dual)
    AND SYSDATE /* jobs executed in the last 12 hours */
    OR start_time > SYSDATE /* OR jobs scheduled in the future */
    ORDER BY start_time DESC;

  • Look for my invoice from July 2010, bought in Washington DC

    I bought IPAD 1 , in Washington DC on July 2010,
    I need to look for the invoice, I paid around 650 US$ .

    You are not communicating with Apple when you post in these forums; we are all just fellow users. You will need to call the store from which you purchased the iPad and ask if they can provide a duplicate receipt. Whether they can provide a duplicate receipt three years after you made the purchase is doubtful, but you can ask.
    Regards.

  • Just put my i-tunes library on a 2nd hard drive, how do I easily change the location where the program looks for current songs from the C:/ drive to the new drive without going thru each song individually in the "get info" tab

    I just installed a new hard drive and transfered my i-tunes library to the new drive.  How can I make a bulk change of the location the program looks for the current songs.  I know you can do it song by song from the "get info" tab but I need to do it for all 4500 songs.  I have already changed the location that new files are stored to the new hard drive.

    The pop-up lets you connect to the library file, iTunes Library.itl, on the external drive. This will, in turn, automatically update the preference for the iTunes Media folder to be the iTunes Media or iTunes Music folder inside the iTunes folder on the external drive and it will update the locations of all the content inside the media folder so that it uses the version on the external drive.
    This works seamlessly if all iTunes content was inside the iTunes Media (or iTunes Music) folder (which was itself inside the iTunes library folder) before you moved/copied the iTunes folder. For content outside the iTunes Media folder iTunes should remain connected to the original location. These files should be consolidated (before or after the move/copy) and in addition, if available the library should be upgraded to the newer layout which places iPod Games and Mobile Applications inside the media folder instead of the library folder. (File > Library > Organize Library...)
    For split libraries there are methods to rejoin them before moving (preferred) or repairing after the fact (e.g. my script) which I can go into if needed.
    tt2

  • Job Board: Looking for Job? Looking for a BizTalk specialist?

    Friend of mine was looking for a BizTalk professional recently and it was painful process because of lack of resources.
    So let's help each other on job market :)
    For BizTalk professionals: You can place here your information, if you are on market now. Please, use the format below:
    Position:  (Entry / Middle / Sr. level ; Architect / Team Lead / Developer / Administrator; etc)
    BizTalk Server experience: _ years
    Good at: _________________
    Expert at: ________________
    LinkedIn profile link.
    Please do not place here your resume :) It is too big for forums.
    This is only for individuals.
    If you are looking for a BizTalk professional, please, place the job description in this format:
    Position (Entry / Middle / Sr. level ; Architect / Team Lead / Developer / Administrator; etc)
    Location
    Duration
    Contact email or LinkedIn profile
    I will monitor this thread and remove all unrelated posts.
    Thanks!
    Leonid Ganeline [BizTalk MVP] BizTalk Development Architecture

    Hi Leonid, We have good and experience team on Biztalk and worked on Middleware tool AMTrix.
    Please find our details:-
    iVision Software is a 9 year old software development organization with expertise in Biztalk among other technologies. We have worked for clients like GE in various geographies like USA, Scandinavia
    and India doing both EAI and B2B integrations. Our people work closely with their client counterparts taking care of their business needs utilizing Agile methodologies. We provide an optimal combination of people who are experts in their field and in working
    offshore with onsite business teams resulting in great quality service at low prices. Please find below a brief description of our capabilities.
    The iVision BizTalk Developer Team have the following competencies:
    Developing xml schema, flat file schema and EDI Schemas.
    Developing simple and complex maps as per the requirement.
    Implementing  various Integration patterns in BizTalk.
    Implementing various design patterns in Orchestration.
    Comfortable in handling Exceptions.
    Working on BRE and BAM.
    Creating C# helper class, custom functoid and custom pipeline components whenever required .
    Proficient with Visual studio , SQL Server .
    Working with following adapters : FILE, FTP,SMTP, WCF-SQL, SQL, SOAP, WCF-custom
    Custom XSLT
    Packaging and deploying application.
    Expertise in EDI X12 , EDIFACT and major XML standards(cXML, OIOXML,UBL,Svefaktura,Finvoice,xCBL etc).
    Proficient in creating EDI Agreements and Trading Partner Profile.
    For further discussion, please drop email to me at [email protected] or skype me at atul.kumar651984
    Regards,

  • Good receipt for job work from other plant

    Dear Experts:
    1.Material Received from Other Plant for job work with challan and how to bring the Material into Stock at receiving plant.
    The same material stock number available in this plant also.
    Regards,
    Sridhar.N

    Hi,
    You could use serial number concept or bacth managment here to separate within the material code.
    Regards

  • Labview engineer looking for job in china

    I am a labview engineer for more than one year in philips lighting (shanghai china).Working on labview7 and RS232,GPIB interface instruments.Now I looking for a job in shanghai china.
    more detail please contact [email protected]

    Hi Alec,
    Your organisation sponsor visa for non-local residents?

  • LabVIEW Engineer looking for job

    I have attached my resume to review.
    Attachments:
    Resume.pdf ‏50 KB

    Dear Sir / Madam,
    I am an experienced engineering professional skilled in Post Silicon Validation by Automating using LabVIEW, Power Measurements, Jitter Measurement & Analysis, Audio Characterizations, Silicon Validation Test Cases, Multi-Channel Data acquisition and Triggering using NI DAQ Cards, Control Systems, Serial Communications using VISA and Serial I/O Interface, Code Native Interfaces, Call Library functions to interface with third party and custom dlls, ATMEL and PIC Micro Controller programming, Temperature Controllers like Honeywell, ESPEC-641, TestEquity 115, Hand held terminal programming to drive servo motors, C/C++/VB Programming for developing embedded applications.
    Good experience on Windows API, protocol implementations, ARM11 & ARM7TDMI on-chip programming using Register Map and Pinout Specs using C/C++ Metrowerks Code Warrior and MULTI-ICE for ARM Debugger.
    Looking for L1/H1 Job
    Thank you for your time and consideration.
    Please find an attachment of my resume in MS-Word format.
    Sincerely yours,
    K.Sowjanya. B.Tech
    Message Edited by Support on 04-04-2008 08:39 AM

Maybe you are looking for

  • E72 unable to make call from Sent Folder

    Instructions on how to verify absence of this feature - send an sms to any test number - go to SENT Folder - Try to make a CALL to the recipient (I did not find any option, If u do, please enlighten me) Well, This has to be a basic feature of a smart

  • Cannot add and Sync ringtones in Itunes

    Hi, I have gotten a new 16GB Iphone and it works perfectly with Itunes 8.02.20 except the ringtones I added in itunes, it doesnt sync (or even show up in my Iphone Ringtones tab). I have tried many M4R but it still doesnt work. Those m4r shownin my L

  • Foreign currency conversion not picking up rate or time period

    I am running the standard FX conversion (standard stored procedure - fxtrans.lgx) on SAP BPC MS version 7.5 , but everytime I run the package, even though I choose a particular day,  it seems to run for multiple time periods. In the formula log  I ge

  • Release Strategy in MM PO document

    Hi,     Could you please any one can clear my doubt in Release Procedure for P.O/PR. I can configure release procedure two level based on value.    Now my doubt is where these two different users going to get their authority. Is it through Parameter

  • Accordion navigation bar styling.

    Hi, I'm wondering if it is possible to create a one page website which includes a "metro style" accordion navigation bar that holds the content for the website within each tab? I know this is possible within jquery/css etc but would like to build it