How to find which backups are running  - whether RMAN or EXPORT or EXPDP ?

I need to find using SQL which backups are running at a particular time . I want to use SQL for this.

Hi,
Check the V$session view to get it.
SELECT SID,PROGRAM FROM V$SESSIONThe program will give you the
In case of export it will give you - exp.exe under the PROGRAM
In case of expdp it will give you - expdp.exe under the PROGRAM
In case of RMAN session it will give you -
       SID PROGRAM
       140 exp.exe
       158 expdp.exe
       138 rman.exe
       149 rman.exeRegards,
Vijayaraghavan K

Similar Messages

  • How to find which applications are running

    I cannot figure out where on the HD to look to see which apps on my iMac are open.
    Other than the ones highlighted in the dock, can there be others open?
    I was ejecting my external HD and a message reads 'it is in use, try quitting applications'.
    As far as I can see, I have quit them.

    Every application that is open goes into the dock and has a blue light under it until the application is closed.... if that application is not added to the dock, then the icon just disappears...
    If application is added to the dock, then when you end the program the little blue light under the icon disappears.
    Cheers

  • How to find which datasource are using  tables AFRU ,CAUFV and AUFM

    *how to find which datasource are using  tables AFRU ,CAUFV and AUFM*

    Hi,
    You can enter your table names in SE11 transaction and click "Display" and again click "Where -Used-List". Then it will show all the places where these tables are used(Datasources)
    Hope this helps.....
    Regards,
    SUman

  • HR   how to find which personal area belongs to which country

    HR
    how to find which personal area belongs to which country
    thank you,
    Regards,
    Jagrut Bharatkumar shukla

    Hi,
        You can use the table T001P for finding that  for eg.,
    <b>Select molga from t001p where werks = 'Your Personnel area code'.</b>
    Thanks
    Yogesh

  • How to find users who are running IE with different credentials ?

    How to find users who are running IE with different credentials ? 
    Is there any tool or a solution in the market will help or a i can use GPO or even Power Shell ?
    thnx & Regards ,,

    Hi Salman,
    Based on your description, we can use Windows Credential Manager to check this. Windows Credential Manager stores credentials, such as user names and passwords  that we use to log on to websites or other computers on a network.
    Regarding Credential Manager, the following article can be referred to for more information.
    Credential Manager
    http://windows.microsoft.com/en-in/windows7/what-is-credential-manager
    Manage passwords in Internet Explorer using Credential Manager
    http://www.thewindowsclub.com/manage-passwords-internet-explorer-10
    Please Note: Since the above website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards,
    Frank Shen

  • How to find which devices are still using affected domain controller

    Hi Everyone,
    We have a 5 Domain controller's in a Site. And we are going to decommisson one of our affected DC in a site.
    Can you please let me know how to find  the log files to see which devices are still using this domain controller.
    Regards,
    Neel kamal
    Neel kamal

    Neel,
    From strictly an Active Directory perspective, there is nothing special you need to do to decommission a domain controller in a site.  There are many processes that automatically balance out and recreate connections as needed without any user intervention. 
    The DC Locator process will automatically direct clients to active domain controllers, there is nothing you need to do here. 
    What you need to be concerned with are things like the following:
    DNS - Are you running AD integrated DNS and is the DC you are decommissioning hosting that roll - if so, is it the ONLY DC in the
    site that is running DNS?  You'll need at least one in the site.
    DHCP server - Is the DC you are demoting a DHCP server?  You'll need to account for that.
    Global Catalog - Is the DC you are demoting a Global Catalog server?  You'll need at least one in the site.
    File Shares - Is the DC hosting any files shares?  You'll need to move those and make sure you redirect your clients.
    Was this DC a set as a Preferred Bridgehead Server?  You'll need to undo that first.
    Those are the big ones that come to mind.  Decommissioning a DC is easy if you have prepared properly.  The others that have replied have offered some great advice which you should follow.  Do your homework and you should be fine.
    Hope that helps
    Gary
    Gary G. Gray
     MCP, MCTS, MCITP, MCT Alumni
    Please remember to mark the replies as answers if they are helpful.
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • How to find which tables are filling by a transaction

    hi ,
            what is the process to know which talbes are filled by a particular transaction eg, by using tcode vd03 we  create customer , which we can see in kna1 tables.

    Use trace like
    - SQL trace, [ST05 (doc)|http://help.sap.com/erp2005_ehp_04/helpdata/EN/43/cb632772cd0cd4e10000000a1553f7/frameset.htm] will show you the tables accessed.
    - performance trace, [SE30 (doc)|http://help.sap.com/erp2005_ehp_04/helpdata/EN/00/e0a73e5b7a424de10000000a114084/frameset.htm] will show you the tables accessed, the FM used, etc.
    NB: VD03 is an inquiry transaction, i suppose you meant VD01
    Regards

  • How to find which tables are being used by a workbook.

    I was asked by the client to generate a report which will show the Workbook name and it's corresponding tables/views.
    Any idea on how to use the EUL tables for this purpose. I know the SQL query to find the tables in case the workbook was run at least once. But I want to show the Workbook and it's table details even the report was never run.
    Advanced thanks,
    Lokesh.

    Hi Jay
    While we're on the subject of scripts, here's a couple more you might like:
    Script 1:
    =========
    This one shows you how many times an item has been used. It is useful for determining how often users make use of items in a folder. It could be used as research for a materialized view, for dropping items which are not used, or for understanding usage.
    SELECT
    OBJ.OBJ_NAME FOLDER,
    EXP.EXP_NAME ITEM,
    COUNT(QPP.QS_ID) USAGE
    FROM
    EUL5_OBJS OBJ,
    EUL5_QPP_STATS QPP,
    EUL5_EXPRESSIONS EXP
    WHERE
    OBJ.OBJ_NAME = <Folder Name>
    AND OBJ.OBJ_ID = EXP.IT_OBJ_ID
    AND INSTR(QPP.QS_OBJECT_USE_KEY,OBJ.OBJ_ID) > 0
    AND INSTR(EUL5_GET_ITEM_NAME(QPP.QS_ID),EXP.EXP_ID) > 0
    GROUP BY
    OBJ.OBJ_NAME,
    EXP.EXP_NAME;
    Script 2:
    =========
    This one examines the whole EUL and displays a count of the number of times a worksheet has been run by folder. It also shows the date and time of the last run. This one is useful to determine the most and / or least popular worksheets. Adjusting the ORDER BY clause can throw up some interesting results.
    SELECT
    OBJ.OBJ_NAME FOLDER,
    MAX(QPP.QS_CREATED_DATE) LAST_DATE,
    QPP.QS_DOC_OWNER OWNER,
    QPP.QS_DOC_NAME WORKBOOK_NAME,
    QPP.QS_DOC_DETAILS SHEET_NAME,
    COUNT(QPP.QS_ID) USAGE
    FROM
    DRAKE.EUL5_OBJS OBJ,
    DRAKE.EUL5_QPP_STATS QPP
    WHERE
    INSTR(QPP.QS_OBJECT_USE_KEY,OBJ.OBJ_ID) > 0
    GROUP BY
    OBJ.OBJ_NAME,
    QPP.QS_DOC_OWNER,
    QPP.QS_DOC_DETAILS,
    QPP.QS_DOC_NAME
    ORDER BY
    OBJ.OBJ_NAME,
    COUNT(QPP.QS_ID) DESC;
    I'm considering a blog entry of useful EUL scripts. Anyone interested? Yes - either reply here or drop me a line.
    Best wishes
    Michael

  • How to find which drivers are missing?

    My laptop model no is Hp Pavillion dv6 1337tx. Someday ago I installed Windows 7 32 bit OS and also installed all drivers from the HP site. Still in the device manager I can see som drivers are missing. What can those be and how can I identify those missing drivers and solve this problem?
    I am attaching a screenshot of the device manager showing some drivers are missing.
    This question was solved.
    View Solution.

    Your image has not yet been approved by a moderator.
    Determining what the devices are is a one at a time process. On each unknown device or device without drivers, right click on the device and select properties. In the properties window select the Details tab and  hardware ids in the property  dropdown. Post the PCI\VEN string as seen in the following image for each device here in your post.  Once that is done we can let you know what the device is.
    This is where the drivers for your notebook are located.  Do you know  which chipset is installed?
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Change Data Capture How to Tell which you are running Sync or Asyn

    Hi ,
    I am taking over a new system that has change data capture running, but Im really confused how this is running. Most of the CDC is set up using Sync(triggers), but I have about 5 tables that DO NOT have system generated triggers on them. I know Streams is NOT running/configured. I know Capture is not running/configured (because nothing in DBA_CAPTURE table). I can tell that these 5 tables are still getting updated in the change table schema. I can not figure out how the 5 tables that DO NOT have triggers on them are updating the change data set tables.
    I had thought the the 5 tables, must be configured with HOTLOG, but when I look at the CHANGE_SETS table they all (including these 5 tables) are set to CHANGE SOURCE NAME = SYNC SOUCE. I would expected that to be HOTLOG_SOURCE. So I "assume" they aren't set up using Asnc. hot log mode. So maybe the other Async modes are used, but not pushed to another database? Is that possible?
    Any other ideas on how to figure out how the CDC is set up for these 5 tables?
    thanks for your help.

    Thanks for the reply, but I think I must have not stated the problem clearly. I dont WANT to set the source I want to figure out how this CDC is working. I see ALL the sources are currently set to SYNC_SOURCE. Almost all of the tables are set up with system triggers on them, but 5 dont have system triggers, yet the source says SYNC_SOURCE. I did validate that the change tables are getting updated for these tables. my question is how are they getting updated? I "assume" since they dont have system triggers ont eh table they aren't synchoronus cdc (like the other tables are). yet the source says SYNC_SOURCE. What am I missing? How can I tell if the redo log is populating those changes tables? Im pretty sure it is (Becuase there aren't triggers or jobs running), but Im curious if there is a way to tell for sure.
    Thanks,

  • How to find which files are in the library

    Hi there,
    I keep almost all of my library as referenced files on external hard-drives because of the small hard-drive that my MBP has. BUT over time I've added some pictures here and there that are stored in my Aperture library. I would like to relocate these pictures, but I don't know which ones they are.
    I can go picture by picture and find them, but I would like an easier way.
    Is there a way to find all the pictures that are stored in the aperture library?

    Bring up the entire Library, for instance by clicking on the All Photos Album.
    Open the search HUD and use the 'plus' button to add a search by File Status.
    You now have a choice of searching by online/offline and managed/referenced.
    Ian

  • How to find which displays are supported

    Is there a way that I can find out what monitors are supported in 10.5.4? Is there a file in one of the directories that shows the various drivers? I had been using my Sony KLV-S32A10 as an external monitor, and it worked fine in Leopard 10.5.2, but with the upgrade it just creates an unreadable mess on the screen. I think that there must have been a change in the drivers and for some reason the Sony is not supported. Any ideas on how to fix it? Thanks.

    Your best bet is to go to Sony's website and see if they have updated drivers for it.
    Glor

  • How to find which songs are not synchronized with iPod?

    I have about 5,000 songs in iTunes and the same minus 7 in the iPod.
    How do I find the songs that were not synchronized?
    Thanks,

    Hi, the instruction are difficult to follow, I am not a programmer. Secondly I understand that it finds duplicate songs. My problem that some tongs were not transfered to iPod for some reason. I checked the duplicate songs from the menu and it showed hundreds, because some of them in the Best of or live Albums.
    I think iTunes should have an option finding non synced songs.
    Thank you,

  • How to find which computers are authorized in iTunes

    Downloaded song. Unable to play.  Says my computer is not authorized.  Need to know which computer authorized.

    https://discussions.apple.com/thread/3107886?start=15&tstart=0
    http://support.apple.com/kb/HT1420

  • How to find expired backups...

    What rman command to use to see which backups are expired..
    rman's crosscheck take stoo long.

    user632098 wrote:
    What rman command to use to see which backups are expired..
    rman's crosscheck take stoo long.
    [oracle@edmtr7p0-orcl ~]$ rman target /
    Recovery Manager: Release 11.2.0.1.0 - Production on Wed Nov 21 11:44:16 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    ;sconnected to target database: ORCL (DBID=1327554174)
    RMANlist expired backup;
    using target database control file instead of recovery catalog
    specification does not match any backup in the repository
    RMAN> Aman....

Maybe you are looking for

  • How can I make my program run faster ? (changing colour indicators quicker)

    Hi everyone, I have a program with 100 indicator colour backgrounds that change according to 100 temperatures. A case structure (with 100 cases) sets the background colours one after the other and runs in a while loop with no timing (as fast as possi

  • Urgent doubt in WAD

    Hi, I have created a Web template which has two tabs. Every thing is working fine except... Initially when it is executed it is displaying all the items like text elements, gennav, check boxes, tables...Actually what is happening here is for the firs

  • Many times a day i have to disconnect the wifi then reconnect

    for some obscure reason, when working, the wifi just stops... it shows that it's connected in the bar besides the clock. but it just dont work. the only solution is to deconnect then reconnect... i look, read and took part in a couple of discussions

  • Cafe townsend demo in dreamweaver help

    In dreamweaver Studio 8 there is help menu at top and it takes you thru for beginners. There is an example site called Cafe townsend and on it has a 'next button" that rotates images. How do you create that look with text on one side and images on th

  • How to remove devices shown in RME and not existing in DCR?

    I have problem with some devices (in fact IP addresses) that was discovered and used by RME in the past but are not reachable anymore. They spoil statistics in RME (collection of inventory and configuration) however they do not exist in DCR. Do you h