How to know which table affected at server side application.

Hello all,
I am new to sql developer and I am accessing oracle database 11g of some xyz company and there application from other machine.
I want to know that is it possible to monitor there application, that on saving/retrieving data which tables are used and what sql statements that forms(in application) are using.
If it is possible then please tell me how ?
I have used Sql monitor Toad to trace such statements on the same machine.
But I cant use toad, all I have sql developer.
Thanks

[sorry, deleted irrelevant wrong answer]

Similar Messages

  • How to know which table in the database a form is accessing

    Actually Im new to oracle applications,
    Im getting an error when i open a form from system administrator responsibility saying that table doesnot exist.
    My basic doubt is, how to know which table in the database a form is accessing.
    Any response is higly appreciated.
    Thanks,
    Praveen
    Edited by: user10239520 on Sep 10, 2008 7:07 AM

    Take a look at the following thread:
    Is there a query log in EBS?
    Re: Is there a query log in EBS?

  • How to know which table has got referencial integrity constraint

    Dear All,
    How can i know which table has got referencial integrity constraint on which table ?
    Ex : Department id column is a primary key in departments table whereas it is a foreign key in employees table. From where can i find the info regarding the relation between employees and departments table ?
    Waiting for your reply.
    Regards,
    Shyam

    you can use dba_constraints or all_constraints to help.
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10755/statviews_1037.htm
    Example:
    select owner, CONSTRAINT_NAME,CONSTRAINT_TYPE,TABLE_NAME from dba_constraints where R_OWNER=':A' and R_CONSTRAINT_NAME=':B'
    A = owner of primary key
    B = constraint name (primary key name)

  • How to know which user shutdown the server

    Hi,
    Is there a way to check which user has shutdown the server in windows server 2012.
    I know Event Id : 1076,1074,6008 gives information about system shutdown.but want to know which user did that ?
    thanks

    Steps to see which user shutdown the system:
    1. Go to event Viewer
    2. Right click on system and -> Filter Current Log
    3. For User Shutdowns, click downward arrow of Event Sources -> Check User32.
    4. In <All Event IDs> type  1074 -> OK
    This will give the list of Power off and restart events. It will have the date and time as well as Username.

  • How could I know which table the synonym points to now?

    I have two tables with the same structure, TableA and TableB
    I create a synonym which points to TableA. In some senario, the synonym should be switched to point to the other table.
    How could I know which table the synonym points to right now? So that I can switch the synonym to the other table.
    Thanks a lot!!!!!!

    How could I know which table the synonym points to right nowSee all_synonyms view.
    So that I can switch the synonym to the other tableNot without drop synonym. You need to drop and recreate the synonym to point to the new table.
    Nicolas.

  • How to identify Which table is hashed

    DB : 10.2.0.3
    OS : AIX 6.1
    I have a query that is using hash join. Below is the query and execution plan.
    SELECT  tj.jq_id jq_id        ,
            tj.ref_key1 ref_key1  ,
            tj.ref_key3 ref_key3  ,
            tj.ref_key2 ref_key2  ,
            tj.ref_key4 ref_key4  ,
            th.rcp_id rcp_id      ,
            th.tp_id tp_id        ,
            th.transmittal_no trno,
            status_flag           ,
            tj.ref_key5 ref_key5  ,
            TO_CHAR(tj.date_finished, 'DD-MM-YYYY HH:MI:SS PM') finished
    FROM    transmittal_job_queues tj,
            transmittal_headers th
    WHERE   tj.job_type_id          = :1
            AND tj.expiration_date IS NULL
            AND th.expiration_date IS NULL
            AND tj.ref_key1         = th.th_id
            AND ref_key2           IS NULL
            AND tj.status_flag     IN ('R', 'A')
    ORDER BY status_flag,
            th.tp_id    ,
            tj.effective_date DESC
    PLAN_TABLE_OUTPUT
    Plan hash value: 1402657176
    | Id  | Operation           | Name                   | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |                        | 18734 |  1335K|       | 10347   (2)| 00:02:05 |
    |   1 |  SORT ORDER BY      |                        | 18734 |  1335K|  3272K| 10347   (2)| 00:02:05 |
    |*  2 |   HASH JOIN         |                        | 18734 |  1335K|  1184K| 10022   (2)| 00:02:01 |
    |*  3 |    TABLE ACCESS FULL| TRANSMITTAL_JOB_QUEUES | 18570 |   961K|       |  1623   (2)| 00:00:20 |
    |*  4 |    TABLE ACCESS FULL| TRANSMITTAL_HEADERS    |  1046K|    19M|       |  6739   (2)| 00:01:21 |
    Query Block Name / Object Alias (identified by operation id):
       1 - SEL$1
       3 - SEL$1 / TJ@SEL$1
       4 - SEL$1 / TH@SEL$1
    Predicate Information (identified by operation id):
       2 - access("TH"."TH_ID"=TO_NUMBER("TJ"."REF_KEY1"))
       3 - filter(("TJ"."STATUS_FLAG"='A' OR "TJ"."STATUS_FLAG"='R') AND
                  "TJ"."JOB_TYPE_ID"=TO_NUMBER(:1) AND "REF_KEY2" IS NULL AND "TJ"."EXPIRATION_DATE" IS NULL)
       4 - filter("TH"."EXPIRATION_DATE" IS NULL)
    Column Projection Information (identified by operation id):
       1 - (#keys=3) "STATUS_FLAG"[VARCHAR2,1], "TH"."TP_ID"[NUMBER,22],
           INTERNAL_FUNCTION("TJ"."EFFECTIVE_DATE")[7], "TJ"."JQ_ID"[NUMBER,22],
           "TJ"."REF_KEY1"[VARCHAR2,20], "TJ"."REF_KEY3"[VARCHAR2,20], "TJ"."REF_KEY2"[VARCHAR2,20],
           "TJ"."REF_KEY4"[VARCHAR2,90], "TH"."RCP_ID"[NUMBER,22], "TJ"."REF_KEY5"[VARCHAR2,20],
           "TH"."TRANSMITTAL_NO"[NUMBER,22], TO_CHAR(INTERNAL_FUNCTION("TJ"."DATE_FINISHED"),'DD-MM-YYYY
           HH:MI:SS AM')[22]
       2 - (#keys=1) "TJ"."JQ_ID"[NUMBER,22], "TJ"."REF_KEY1"[VARCHAR2,20],
           "REF_KEY2"[VARCHAR2,20], "TJ"."REF_KEY3"[VARCHAR2,20], "TJ"."REF_KEY4"[VARCHAR2,90],
           "TJ"."REF_KEY5"[VARCHAR2,20], "TJ"."STATUS_FLAG"[VARCHAR2,1], "TJ"."DATE_FINISHED"[DATE,7],
           "TJ"."EFFECTIVE_DATE"[DATE,7], "TH"."RCP_ID"[NUMBER,22], "TH"."TP_ID"[NUMBER,22],
           "TH"."TRANSMITTAL_NO"[NUMBER,22]
       3 - "TJ"."JQ_ID"[NUMBER,22], "TJ"."REF_KEY1"[VARCHAR2,20], "REF_KEY2"[VARCHAR2,20],
           "TJ"."REF_KEY3"[VARCHAR2,20], "TJ"."REF_KEY4"[VARCHAR2,90], "TJ"."REF_KEY5"[VARCHAR2,20],
           "TJ"."STATUS_FLAG"[VARCHAR2,1], "TJ"."DATE_FINISHED"[DATE,7], "TJ"."EFFECTIVE_DATE"[DATE,7]
       4 - "TH"."TH_ID"[NUMBER,22], "TH"."RCP_ID"[NUMBER,22], "TH"."TP_ID"[NUMBER,22],
           "TH"."TRANSMITTAL_NO"[NUMBER,22]
    46 rows selected.
    sys@TESTDB> select count(*) from TRANSMITTAL_JOB_QUEUES;
      COUNT(*)
        586928
    sys@TESTDB> select count(*) from TRANSMITTAL_HEADERS;
      COUNT(*)
       1314095
    sys@TESTDB> select sum(bytes)/1024/1024 from dba_segments where segment_name='TRANSMITTAL_JOB_QUEUES'
    SUM(BYTES)/1024/1024
                    65.5
    sys@TESTDB> select sum(bytes)/1024/1024 from dba_segments where segment_name='TRANSMITTAL_HEADERS';
    SUM(BYTES)/1024/1024
                     271I wanted to know, which table is hashed in memory among "TRANSMITTAL_JOB_QUEUES" & "'TRANSMITTAL_HEADERS" ?

    Thanks, but is a thumb rule that smaller table will be hashed ?
    Also, how can i be sure by seeing the executing plan that smaller table is hashed ?

  • How's this partition table for my server?

    How's this partition table for my server?  Web/DNS/DHCP/Mail Server.
    hdd1: ~8gb total
    /boot - 100mb
    swap - 1gb
    / - rest of drive
    hdd2: ~155gb total
    /var - whole drive
    This is a Compaq ProLiant 5500 server with 10 drives.  Will most things be installed inside /var or what?

    Zetsumei wrote:Web/DNS/DHCP/Mail Server.
    Web = /srv
    DNS = /var
    DHCP = /var
    Mail = Depends which package you use. I use postfix and told it to use /srv
    I would half your swap, reduce /var and put the extra space into /srv
    Also create a separate /tmp and /home to prevent accidental or deliberate DoS attacks by filling your / partition
    Here's what I use on my Web / DNS / FTP server:
    Filesystem Size Used Avail Use% Mounted on
    /dev/xvda 493M 176M 317M 36% /
    /dev/xvdc 31M 674K 29M 3% /boot
    /dev/lvmData-home 62M 26M 34M 44% /home
    /dev/lvmData-usr 2.0G 848M 1.1G 45% /usr
    /dev/lvmData-tmp 496M 20M 451M 5% /tmp
    /dev/lvmData-srv 1.5G 769M 667M 54% /srv
    /dev/lvmData-var 496M 231M 241M 49% /var
    /dev/lvmData-pacman 384M 303M 82M 79% /var/cache/pacman
    /dev/lvmData-backup 5.5G 4.6G 565M 90% /mnt/backup

  • How to know which master data objects need to activated  in R3

    SALES OVERVIEW CUBE -0SD_C03
    How to know which master data objects need to activated from delivery version to active version in R/3 for a particular standard cube like 0SD_C03.
    its very urgent please advise.
    R/3 in RSA5
    Sales Master Data
    0ACCNT_ASGN_TEXT               Account assignment group for this customer   
    0ACCNT_GRP_TEXT                Customer account group                       
    0BILBLK_DL_TEXT                Locked                                       
    0BILBLK_ITM_TEXT               Billing block for item                       
    0BILL_BLOCK_TEXT               Billing block in SD document                 
    0BILL_CAT_TEXT                 Billing Category                             
    0BILL_RELEV_TEXT               Relevant for Billing                         
    0BILL_RULE_TEXT                Billing rule                                 
    0BILL_TYPE_TEXT                Billing Type                                 
    0CONSUMER_ATTR                 Consumer                                     
    0CONSUMER_LKLS_HIER            Consumer                                     
    0CONSUMER_TEXT                 Consumer                                     
    0CUST_CLASS_TEXT               Customer Classification                      
    0CUST_GROUP_TEXT               Customer Group                               
    0CUST_GRP1_TEXT                Customer Group 1                             
    0CUST_GRP2_TEXT                Customer Group 2                             
    0CUST_GRP3_TEXT                Customer Group 3                             
    0CUST_GRP4_TEXT                Customer Group 4                             
    0CUST_GRP5_TEXT                Customer Group 5                             
    0DEALTYPE_TEXT                 Sales Deal Type                              
    0DEL_BLOCK_TEXT                Delivery block (document header)             
    0DEL_TYPE_TEXT                 Delivery Type                                
    0DISTR_CHAN_TEXT               Distribution Channel                         
    0DIVISION_TEXT                 Division                                     
    0DLV_BLOCK_TEXT                Schedule line blocked for delivery           
    0DOC_CATEG_TEXT                SD Document Category                         
    0DOC_TYPE_TEXT                 Sales Document Type                          
    0INCOTERMS_TEXT                Incoterms (Part 1)                           
    0INDUSTRY_TEXT                 Industry keys                                
    0IND_CODE_3_TEXT               Industry code 3                              
    0IND_CODE_4_TEXT               Industry code 4                              
    0IND_CODE_5_TEXT               Industry code 5                              
    0IND_CODE_TEXT                 Industry code                                
    0ITEM_CATEG_TEXT               Sales document item category                 
    0ITM_TYPE_TEXT                 FS item type                                 
    0KHERK_TEXT                    Condition Origin                             
    0MATL_GRP_1_TEXT               Material Group1                                         
    0MATL_GRP_2_TEXT               Material Group 2                                         
    0MATL_GRP_3_TEXT               Material Group 3                                         
    0MATL_GRP_4_TEXT               Material Group 4                                         
    0MATL_GRP_5_TEXT               Material Group 5                                         
    0MATL_TYPE_TEXT                Material Type                                            
    0MAT_STGRP_TEXT                Material statistics group                                
    0NIELSEN_ID_TEXT               Nielsen ID                                               
    0ORD_REASON_TEXT               Order reason (reason for the business transaction)       
    0PICK_INDC_TEXT                Indicator for picking control                            
    0PRODCAT_TEXT                  Product Catalog Number                                   
    0PROD_HIER_TEXT                Product Hierarchy                                        
    0PROMOTION_ATTR                Promotion                                                
    0PROMOTION_TEXT                Promotion                                                
    0PROMOTYPE_TEXT                Promotion Type                                           
    0PROV_GROUP_TEXT               Commission Group                                         
    0REASON_REJ_TEXT               Reason for rejection of quotations and sales orders      
    0REBATE_GRP_TEXT               Volume rebate group                                      
    0RECIPCNTRY_TEXT               Destination country                                      
    0ROUTE_TEXT                          Route                                                    
    0SALESDEAL_ATTR                Sales deal                                               
    0SALESDEAL_TEXT                Sales deal                                               
    0SALESORG_ATTR                 Sales organization                                       
    0SALESORG_TEXT                 Sales Organization                                       
    0SALES_DIST_TEXT               Sales district                                           
    0SALES_GRP_TEXT                Sales Group                                              
    0SALES_OFF_TEXT                Sales Office                                             
    0SCHD_CATEG_TEXT               Schedule line category                                   
    0SHIP_POINT_TEXT               Shipping point/receiving point  
    In BW
    Base Unit of Measure     0BASE_UOM
    Bill-to party                    0BILLTOPRTY
    Calendar Day                  0CALDAY
    Calendar Year/Month      0CALMONTH
    Calendar Year/Week      0CALWEEK
    Change Run ID              0CHNGID
    Company code              0COMP_CODE  
    Cost in statistics currency          0COST_VAL_S
    Credit/debit posting (C/D)            0DEB_CRED
    Distribution Channel       0DISTR_CHAN
    Division                                     0DIVISION 
    Number of documents    0DOCUMENTS
    Sales Document Category          0DOC_CATEG
    Document category /Quotation/Order/Delivery/Invoice 0DOC_CLASS
    Number of Document Items         0DOC_ITEMS
    Fiscal year / period
    Fiscal year variant                      0FISCVARNT
    Gross weight in kilograms           0GR_WT_KG
    Number of Employees    0HDCNT_LAST
    Material                                     0MATERIAL
    Net value in statistics currency    0NET_VAL_S
    Net weight in kilograms 0NT_WT_KG
    Open orders quantity in base unit of measure 0OPORDQTYBM
    Net value of open orders in statistics currency 0OPORDVALSC
    Payer                            0PAYER
    Plant                             0PLANT
    Quantity in base units of measure 0QUANT_B
    Record type                   0RECORDTP
    Request ID                    0REQUID
    Sales Employee            0SALESEMPLY
    Sales Organization         0SALESORG
    Sales group                   0SALES_GRP
    Sales Office                   0SALES_OFF
    Shipping point                0SHIP_POINT
    Ship-To Party                0SHIP_TO
    Sold-to party                  0SOLD_TO
    Statistics Currency                    0STAT_CURR
    In R3 RSA5 we have all the Master data data sources as mentioned above, and BW also. How to find the related Master data Infosource in R/3 Master data Data sources.
    Thanks in advance,
       Bhima.
    Message was edited by: Bhima Chandra Sekhar Guntla

    Hi,
    <i>How to know which master data objects need to activated from delivery version to active version in R/3 for a particular standard cube like 0SD_C03.</i>
    I think, you are looking for master data sources(text,attributes,hier).Am i right?
    If so, This cube has almost all SD master data characterstics. So you can activate all the all master data datasources of SD in r/3 (SD-IO).
    Any way you requirement does not stop only by using this cube . You will activate all other cubes in SD also. So if you want to activate only needed master data datasources when you are activating a cube, the job becomes senseless. There is no problem(wrong) in activating all master data available under that application , even though you want to activate only one cube.
    With rgds,
    Anil Kumar Sharma .P

  • How to know which interfaces are going to which switch?

    How to know which interfaces are going to which switch ?
    I know that cdp will show this information. But CDP will not show info about the devices connected to my device and whose link between is administratively down.
    Regards,
    Chandu

    I don't want to the end devices location.
    For example, i have a switch that connect to multiple switches few using etherchannels and few using stand-along ports.
    So assume that one of the link whether it may be entire port-channel or a stand alone link that connects to another switch has been shut down manually by some x person...
    Then how can i know that which interfaces are connecting to that switch. In this case i think CDP will not  help because it will hold the information of ports that are up.
    Regards,
    Chandu

  • How I know which manageability tools(Oracle Change Management Pack,Oracle C

    Dear all,
    How I know which manageability tools(Oracle Change Management Pack,Oracle Configuration Management Pack,Oracle Diagnostic Pack,Oracle Tuning Pack, etc.) are installed on my oracle databases? Is there v$view to look at? Thank you in advance for your help.

    The usual method is described in http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm#CIHGFIAF

  • How to know the tables for a datasource like 2lis_17_order

    Hi,
    How to know the tables for a data source like 2lis_17_order, i have checked in Extract structure of that data source, only fields are visible but how will i know that these fields are getting extracted from so and so tables?
    pls respond. thanks in advance

    Hi,
    Go to RSO2 at source system, Enter data source and click on display.
    if its table based then you can see table name there it self.
    if its view based then notedown the view name and go to  SE11, provide view and click on display. see joined table names there.
    Thanks

  • How to know which object is in which transport requeset

    hi frnds
    how to know which object is in which transport request

    hi Preethi
    try with transaction se01 then clic on the tools icon under the menu you will get a list of function.
    then select search for object in transport request (maybe the text is a bit different) then enter information like for example R3TR  OSOA and the name of a datasource. if you don't know the meaning of R3TR use the match code and use it also for objects you want to find infosource infoobject etc... don't forget to mark the flag select if your transport request is released or not and then execute you will get the list of all transport requests containing your search object.
    hope this could help you
    best regards
    Boujema

  • How to know the table name of an InfoCub if we know cube technical name?

    How to know the table name of an ODS if we know the ODS technical name?
    Thanks
    Message was edited by: Kevin Smith

    hi kevin
    if the ODS is a standard ODS then you check the following way in SE16
    (for custom ODS objects)
    /BIC/A<ODS technical name>00 (Active Data Table)
    /BIC/A<ODS technical name>40  (Activation Queue)
    /BIC/B<10 digit number> (Change Log Table)
    (for SAP defined ODS Objects)
    /BI0/A<ODS technical name>00 (Active Data Table)
    /BI0/A<ODS technical name>40  (Activation Queue)
    /BI0/B<10 digit number> (Change Log Table)
    and for Transactional ODS Object you will have only the active data Table. So you need to check with /BIC/A<ODS technical name>00 for the custom ODS objects and /BI0/A<ODS technical name>00 for SAP defined ODS objects.
    hope this helps.
    regards
    vijaykumar

  • How to know which type of jdbc driver used in my application

    How to know which type of jdbc driver used in my application.

    My approach will be....
    Type1: you have to have ODBC s/w install on your machine...even the connection string starts with jdbc:odbc....so it can be identifed easily
    Type2: you have to install client s/w in your machine...if you are using oracle oci driver ...you need to install oracle client s/w
    Type3: you use servername / port to connnect to middleware
    Type4: you do not need any client s/w
    So, If your application works without any client s/w on your machine....you might be using Type4/Type3 driver.....otherwise Type2
    Someone pls add more ....

  • How to know which type of apple device am using

    how to know which type of apple device am using

    Check iPad model with the Serial Number
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Settings>General>About>Serial Number

Maybe you are looking for