How to see DB transaction logs

Hi All,
I have application mapped to the oracle DB RAC(node1 and node2). I am making request to the application, now I would like to know each request is served by which node. Where can I get this information in the Database. I am using 11g database.
I would like to know which transaction is handled by which node.
thanks,
Venkat.
Edited by: user778405 on Sep 2, 2010 4:44 AM

There is no simple answser. This depends mainly on the way you can retrieve some application data in GV$SESSION.
This data needs to be set up explicity with DBMS_APPLICATION_INFO or maybe implicitely by the application code/database driver.

Similar Messages

  • How to see work flow log from Work flow number & work item?

    Hi SDN,
    How to see work flow log from Work flow number & work item?
    Please let me know if there is any transaction for this?
    Or there is any table which gives the details of Work items & work flow numbers?
    Regards,
    Rahul
    Edited by: Rahul Wagh on Nov 12, 2008 5:56 PM

    Hi Rahul
    Go to the Transaction SWI1,
    Enter the workitem no and press F8.
    Select the required entry and Press Shift+F8 (Log Button)
    to view the workflow log.
    Best Regards,
    Deepa Kulkarni

  • How to see the change logs for billing document

    Dears,
    Could you please how to see the change logs for billing document.
    My client is using ECC 6.0 & if i use VF03 > Environment > changes > does not show the changes i had made.
    Thanks in advance
    Ranjan

    hello, friend.
    you should be able to see changes done after the initial creation and saving, by going thru Environment > Changes.  try it again, and this time make sure that changes were done to the billing document prior to posting to accounting.
    normally, when configuration of Billing is done correctly, there will be little or no instances of changing anything in the Billing document,  as saving the document after creation will post this to Accounting.  of course, inclusion of a posting block in the billing type will provide you the opportunity for changes. 
    regards.

  • Need a Walkthrough on How to Create Database & Transaction Log Backups

    Is this the proper forum to ask for this type of guidance?  There has been bad blood between my department (Research) and the MIS department for 30 years, and long story short I have been "given" a virtual server and cut loose by my MIS department
    -- it's my responsibility for installs, updates, backups, etc.  I have everything running really well, I believe, with the exception of my transaction log backups -- my storage unit is running out of space on a daily basis, so I feel like I have to be
    doing something wrong.
    If this is the proper forum, I'll supply the details of how I currently have things set up, and I'm hoping with some loving guidance I can work the kinks out of my backup plan.  High level -- this is for a SQL Server 2012 instance running on a Windows
    2012 Server...

    Thanks all, after posting this I'm going to read the materials provided above.  As for the details:
    I'm running on a virtual Windows Server 2012 Standard, Intel Xeon CPU 2.6 GHz with 16 GB of RAM; 64 bit OS.  The computer name is e275rd8
    Drives (NTFS, Compression off, Indexing on):
    DB_HVSQL_SQL-DAT_RD8-2(E:) 199 GB (47.2 used; 152 free)
    DB_HVSQL_SQL-Dat_RD8(F:) 199 GB (10.1 used; 189 free)
    DB_HVSQL_SQL-LOG_RD8-2(L:) 199 GB (137 used; 62 free) **
    DB_HVSQL_SQL-BAK_RDu-2(S:) 99.8 GB (64.7 used; 35 free)
    DB_HVSQL_SQL-TMP_RD8-2(T:) 99.8 GB (10.6 used; 89.1 free)
    SQL Server:
    Product: SQL Server Enterprise (64-bit)
    OS: Windows NT 6.2 (9200)
    Platform: NT x64
    Version: 11.0.5058.0
    Memory: 16384 (MB)
    Processors: 4
    Root Directory: f:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL
    Is Clustered: False
    Is HADR Enabled: False
    Database Settings:
    Default index fill factor: 0
    Default backup media retention (in days): 0
    Compress backup is checkmarked/on
    Database default locations:
      Data: E:\SQL\Data
      Log: L:\SQL\LOGs
      Backup: S:\SQLBackups
    There is currently only one database: DistrictAssessmentDW
    To create my backups, I'm using two maintenance plans, and this is where I'm pretty sure I'm not doing something correctly.  My entire setup is me just guessing what to do, so feel free to offer suggestions...
    Maintenance Plan #1: Backup DistrictAssessmentDW
      Scheduled to run daily Monday Through Friday at 3:33 AM
      Step 1: Backup Database (Full) 
        Backup set expires after 8 days 
        Back up to Disk (S:\SQLBackups)
        Set backup compression: using the default server setting
      Step 2: Maintenance Cleanup Task
        Delete files of the following type: Backup files
        Search folder and delete files based on an extension:
          Folder: L:\SQL\Logs
          File extension: trn
          Include first-level subfolders: checkmarked/on
        File age: Delete files based on the age of the file at task run time older than 1 Day
      Step 3: Maintenance Cleanup Task
        Delete files of the following type: Backup files
        Search folder and delete files based on an extension:
          Folder: S:\SQLBackups
          File extension: bak
          Include first-level subfolders: checkmarked/on
        File age: Delete files based on the age of the file at task run time older than 8 Days
    Maintenance Plan #2: Backup DistrictAssessmentDW TRANS LOG ONLY
      Scheduled to run daily Monday through Friday; every 20 minutes starting at 6:30 AM & ending at 7:00 PM
      Step 1: Backup Database Task
        Backup Type: Transaction Log
        Database(s): Specific databases (DistrictAssessmentDW)
        Backup Set will expire after 1 day
        Backup to Disk (L:\SQL\Logs\)
        Set backup compression: Use the default server setting
    Around 2:30 each day my transaction log backup drive (L:) runs out of space.  As you can see, transactions are getting backed up every 20 minutes, and the average size of the backup files is about 5,700,000 KB.
    I hope this covers everything, if not please let me know what other information I need to provide...

  • How to See Todays Transactions.

    Hi,
    Can you say how to see for todays transactions in a database.
    all DML Operations carried out for current day with a single query.
    Thanks in Advance...
    Stalin...

    Hi,
    Try this set of operations
    CREATE TABLE MONITOR_TABLE(ID NUMBER, NAME VARCHAR2(10));
    SELECT MONITORING FROM USER_TABLES WHERE TABLE_NAME = 'MONITOR_TABLE';
    ALTER TABLE MONITOR_TABLE MONITORING;
    SELECT * FROM USER_TAB_MODIFICATIONS
    INSERT INTO MONITOR_TABLE VALUES(3, 'NAME3');
    COMMIT;
    EXEC DBMS_STATS.FLUSH_DATABASE_MONITORING_INFO;
    SELECT * FROM USER_TAB_MODIFICATIONS;
    UPDATE MONITOR_TABLE SET NAME='NAME4' WHERE ID=3;
    EXEC DBMS_STATS.FLUSH_DATABASE_MONITORING_INFO;
    SELECT * FROM USER_TAB_MODIFICATIONS;cheers
    VT

  • How to see the Container log for debugging in netbeans 4.1

    Hi All
    I am using the netbeans 4.1 with sun applicaion server 81. as my applicaion server. I have developed one ejb module and deployed it in server. Now I want to see the EJB container log for knowing how my beans methods are being called at the time of execution. Can any one please help me on this.
    Thanks
    Ranjan Rashmi Sahoo.
    Mphasis BFL Ltd, Bangalore.
    India

    Could you tell me how to see the logger?Search for Log4J. It has a good documentation IMO.

  • How to analyse WAAS transaction log ?

    hi all
    in my user environment
    some WAE accelerated perfomance is not well
    effective capacity including Pass-Through is 1.2x - 1.5x
    I found that PT traffic is big
    I enabled transaction log
    and have any procedure to analyse log and tune the WAE
    make it better
    thanks

    Hello,
    Your question is a very common issue that we see.  The transaction logs probably won't help you improve the performance of your WAAS network.
    The best place to start is by running a "show stat conn pass-through"
    This will give you a list of all the connections that are in Pass-through and some indication of why they are in pass-through or PT.  Here is a short sample
    192.98.108.239:2731 192.98.203.55:88    N/A                 PT App Cfg         
    192.98.48.6:3268    155.64.230.190:185870:1a:64:c7:57:f0    PT Asymmetric      
    192.98.108.221:1241 192.98.48.41:1258   N/A                 PT In Progress     
    192.64.188.55:8000  172.16.64.130:2006  N/A                 PT In Progress     
    192.64.230.107:80   172.16.64.241:3111  N/A                 PT No Peer         
    192.127.38.51:1521  192.98.150.30:3583  N/A                 PT In Progress     
    You can see a few of the reasons for the PT connections and each one of them have different reasons.
    PT App CFG, means that that there is a classifier for that TCP port and it is configured for Pass-through.
    The remaining PT can be caused by WCCP misconfiguration at the site you are looking at or the remote location.
    To find the issue, you need to do traceroute from the client to server and server to client.  Follow that path and make sure it is hitting a L3 interface on a router with WCCP enabled.  Also check your WCCP ACL to make sure your traffic is permitted.
    For WAAS to optimize a connection, WCCP has to happen four times.  The SYN at the local and remote router and the same for the SYN/ACK.
    I hope this is helpful.
    Tom Jardin

  • How to see old ssis logs ?

    Hi ! I don't know where or how SSIS (the SSIS tool, not sql server agent) stores logs for old jobs. Is there a way to see the log of SSIS jobs from past day, week, month etc . ?
    Thanks.

    Will it also show reasons for failure of the package ? Thanks.
    Hi blastoSO,
    By querying the sysjobhistory table of MDSB database, we can view the error message of jobs. However, to get the SSIS package log details, we have to make use of SSIS logging such as SSIS logging provider for SQL Server which store the package logs into
    the sysssislog table.
    Regards,
    Mike Yin
    TechNet Community Support

  • How to see the user log of query

    Hi all ,
    Can any body help me about the log of user access to a Bex 3.5 query ? We want to learn which users access to query designer and make changes on queries. The query designer only give us the last user who access to query. Is there a transaction or something that we can see this information.

    Hi Selen,
    Check RSZCHANGES and note down the compid
    and check it in RSZCOMPDIR
    Check these tables in SE11
    check these threads even..
    [Change logs for query...........;
    [Id of logged in user;
    [http://help.sap.com/saphelp_nw04s/helpdata/en/43/5fa1dc3c046e47e10000000a422035/frameset.htm]
    Regards,
    NR
    Assign points if helpful...

  • How we see Users transaction Deatails by daily wise.

    Hi,
    I want to knw each users how many transactions he added in
    each documents wise. through Drag and relate we can get but
    there is no option for  incoming and outgoing documents. how
    we will see daily how many transactions he updated. we have
    saw in  OUSR  Table in this there is no data regarding entries.
    daily wise.

    Dear Sampathdevunuri,
    You can get the Users transaction Details daily wise, by creating a small query and create a alert based on that query.
    I have written a sample query for you, which will give the total no. A/R invoices created by each user on daily basis.
    SELECT count(T0.[DocNum]) as "Total A/R Invoice", T1.[U_NAME] FROM OINV T0  INNER JOIN OUSR T1 ON T0.UserSign = T1.INTERNAL_K WHERE DATEDIFF(DD,T0.CREATEDATE,GETDATE())=0 GROUP BY T1.[U_NAME]
    You can creat an alert based on this query and set the alert to fire at the end of the day, so that you have the complete details about the total A/R invoice transactions per user.
    Also you can modify this query to get the details information about other transactions per user as per your requirement.
    Regards,
    Rakesh Pati
    SAP Business One Forum Team

  • How to see who is log in attendant console

    Hi, I'm looking to see which user is log in attendant console, is there a way to do that ?

    Try this link
    http://www.cisco.com/en/US/products/sw/voicesw/ps555/products_qanda_item09186a00800b0a20.shtml

  • How can I view transaction log?

    Hello,
    I need to get statistics, about how much time does it take to execute each stored procedure (procedure start time, and procedure end time) on database 9i.
    Any ideas?
    Thanx,
    Romas

    Hi Romas,
    Take a look at the DBMS_PROFILER package. Functions in the package to look at are START_PROFILER and END_PROFILER. Once you are done, profiling, you can get a very detailed report on how long your procs took and much more stuff.
    Besure to install the DBMS_PROFILER package using "PROFLOAD.SQL" script (sys must install it). the PROFTAB.sql script will help you the info. All stated in the link below. Hope this helps.
    Here is the link to the documentation.
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96612/d_profil.htm#ARPLS039

  • [Solved] How to see the VSFTPD's logs

    I need to see the connections log: When a user logs in or logs out, its IP address, etc.
    Using
    journalctl -u vsftpd
    The only thing  can see are the connection fails.
    Any idea about how to see the connection logs?
    uname -a
    Linux darkBit 3.19.2-1-ARCH #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015 x86_64 GNU/Linux
    Last edited by ninioArg (2015-04-12 22:08:45)

    Not a Sysadmin issue, moving to NC.
    Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.

  • How to see Reporting Agent Package Deletion Logs?

    Hello, it seems that someone deleted some of our existing reporting agent packages in our production system. I am trying to figure out how to see the specific log for this deletion, does anyone know how/where to find this information?
    Thanks,
    Justin

    That will only give me the execution/activity logs. I need something more along the lines of an object deletion log. For example, like when a request is deleted from a cube or an InfoObject is deleted.
    Thanks

  • Hwo to see previous payroll log

    Hi,
    how to see previous payroll log , bcz i want to see how a wagetype is getting  processed by a PCR, and that i want to see in previous months/periods.
    Regards
    kvin
    Edited by: kvin kvin on Jul 15, 2009 12:31 PM

    why the system is taking random
    does the PCR has certain logic that if these PERNR has this condtion the PCR has to be porcessed  like that
    Ex:  say for Loans we need to write the PCR
    for those employees who has taket the loans  the PCR will get processed in the Pay roll log
    for those who has not taken the PCR will not get Processed
    and while i testing in test run i am able to see the Logic of that PCR of othe period in the rest run
    > because if ur test run is fine than u will go for Live run and this data will be picked up from the Infotypes and will get processed and PCR checks the condition and will get processed

Maybe you are looking for

  • Missing font in Keynote 6

    Every time I open Keynote 6.2.2 I receive the message "The font GillSans is missing." This is frustrating for two reasons: I don't use the font personally, so I assume it is on some master slide and the font is installed in my Font Book. Any help on

  • I can`t listen to Youtube without stopping every second and also videos

    I have Windows 7, I did install Adobe Flash Player version 10.1. Can't listen music in Youtube or videos, without stopping every second. Someone suggested that I change the buffer rate lower, but I don't know where to go.

  • Changing text dimensions/proportions

    Hi I'm new to Live Type so forgive me if this is a daft question. I'm currently working my way through the excellent tutorials on the Live Type Central website and as yet, haven't found what I'm looking for. Is there a way in Live Type to be able to

  • Iphone4 Verizon IMAP not pushing

    I can see emails acknowledge but not downloaded.  Using registered domain with godaddy.com  Stopped working but on push sync - it states 1 of 200 emails but then doesn't download them.  gmail, yahoo and me.com all work fine. Have deleted account and

  • Can you sync 1 meeti

    Can an appointment in iCal be allocated to two calendars e.g. sync with iCloud and my iPhone and also google calendar and my wife's Galaxy Phone