Execute Queries from Right Pane Workspace

Hello All,
I have a Query Blocking rules in place. When I execute saved queries from tree structure on right pane, it invokes blocking rules but when I execute queries from workspace (Left pane) it does not invoke blocking rules.
The query blocking rule is in WebMessage name="kuiCriteriaBlockingScript" under function validateAnalysisCriteria
Any ideas on what I must be missing?
Thanks
RA
Edited by: 855456 on May 26, 2011 6:04 AM

Assign as many schemas to your workspace as you want using the administration app. Read about it in the doc.
Scott

Similar Messages

  • Execute Multiple "select" queries from a java program

    Hi,
    Please take time to see the code below.
    What my problem is:
    All the queries given will be executed one by one. So, if there is large data to be retrieved then each query will take so much of time.
    Is there any way that i can execute all the 3 queries simultaneously so that i can get quicker response time.
    Please send me the way to do it and any sample code if available
    Thanks.........
    public static void main(String argv[])
    float spr=0;
    float spr1=0;
    float spr2=0;
    int db_block_size=0;
    String query1;
    String query2;
    String query3;
    query1="select count(distinct(substr(dbms_rowid.rowid_to_Restricted(rowid,0),1,8))) from table1";
         query2="select count(distinct(substr(dbms_rowid.rowid_to_Restricted(rowid,0),1,8))) from table2";
         query3="select count(distinct(substr(dbms_rowid.rowid_to_Restricted(rowid,0),1,8))) from table3";
    Connection conn;
    Statement stmt;
    String name;
         try {
    Class.forName("com.inet.ora.OraDriver");
              catch(java.lang.ClassNotFoundException e)
                   System.err.print("ClassNotFoundException: ");
                   System.err.println(e.getMessage());
    try
         conn = DriverManager.getConnection("jdbc:inetora:135.112.22.51:1521:S","dacscan","mnc");
    stmt = conn.createStatement();
    ResultSet rset=stmt.executeQuery("select value from v$parameter where name='db_block_size' ");
    rset.next();
         db_block_size=rset.getInt(1);
    System.out.println(db_block_size);
         rset.close();
    rset=stmt.executeQuery(query1);
    rset.next();     
    spr=rset.getFloat(1);
              System.out.println (spr);
         rset.close();
    rset=stmt.executeQuery(query2);
    rset.next();
         spr2=rset.getFloat(1);
              System.out.println (spr2);
         rset.close();
    rset=stmt.executeQuery(query3);
    rset.next();
         spr3=rset.getFloat(1);
              System.out.println (spr3);
         rset.close();
    catch(SQLException ex)
                   System.err.println("SQLException: " + ex.getMessage());
                   ex.printStackTrace();
              }

    Is there any way that i can execute all the 3 queries simultaneously so that i can get quicker response time.
    Yes, you can execute queries #1 and #2 each in its own thread. Execute query #3 in the original thread. Then use Thread.join() to wait for each of the other two queries to finish.
    - Saish

  • Panning footsteps from right to centre

    Hi,
    I'm trying to get my footsteps sample to sound as though the person is walking from right to centre .......... and then later on, back again ( centre to right ). Without success.
    I thought I could use automation to increase the volume ( ie as in quiet suggest distance, getting louder suggests getting nearer ) combined with the tremelo.
    But I'm going bananas and not succeeding. I also have the choice of using the simple Pan in Logic or the VSL PowerPan but don't know how to alter these to suggest motion.
    Please, someone rescue me from my misery and show me how.
    Thank you,
    Kay.

    Hi, this is something that can seem quite difficult but once you know how it is done it is very easy.
    The reply bellow is one way of doing it (with latch), or another way is;
    In the arrange window, select the track you wish to use. Then press "a" to open up the automation.
    Then you will see the screen has changed slightly. The track you have high lighted will have the name of the track, bellow that a bar with volume and bellow that two smaller bars. In this case we are looking at the bar that says "Volume".
    If we click on this it should give you a list of of parameters you can alter.(volume should be indicated with a tick).
    Select "Pan" and the line going through your sample should be in the middle, (if you haven't adjusted it already).
    Click on the line you see and it will leave a green high lighted dot and turn the line green. ( this means that it is active and in "Read" mode.
    place a few dots on the line and pull them down or up and listen to the sound. (Remember that this is just panning and not volume).
    Have a play around and get used to it. Add a bit of reverb too to create depth and image.
    Hope this helps
    Steve

  • How to add buttons/text to right pane when selection is made from left pane

    Hi,
    I am new to JAVA development with SWING.
    I am trying to create an application where in the left pane there is a Tree Menu and in the right pane I have some buttons. Based on the selections in the left Pane, I should be able to add more buttons and or text to the right pane.
    How do I accomplish this? If you guys have any sample code, Please post it or suggest different ways of accomplishing.
    Thanks in advance.
    user2325986

    It looks like you are declaring different main_Frame, rightPane and leftPane and have too many items static and final. Take a look at the code below. I have set GridBagLayout for the frame for a better look.
    I am not sure what you mean when you say that you want right panel only and want to add to it. Also, I think you would be better off using CardLayout for rightPanel as stated by jduprez
    When you want to show code use {_code_} code here {_code_} tags (code in brackets without underscores)
    Here is a working sample of what you had:
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import javax.swing.tree.*;
    public class Main
        public static void main(String[] args)
            main_Frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            main_Frame.setVisible(true);
        public static TestFrame main_Frame = new TestFrame();
    class TestFrame extends JFrame
        public TestFrame()
            setTitle("Test Frame");
            setSize(500, 500);
            setLayout(new GridBagLayout());
            leftGBC = new GridBagConstraints();
            leftGBC.gridx = 0;
            leftGBC.gridy = 0;
            leftGBC.fill = leftGBC.BOTH;
            leftGBC.weightx = 10;
            leftGBC.weighty = 100;
            rightGBC = new GridBagConstraints();
            rightGBC.gridx = 1;
            rightGBC.gridy = 0;
            rightGBC.fill = rightGBC.BOTH;
            rightGBC.weightx = 100;
            rightGBC.weighty = 100;
            leftPanel = new JPanel();
            leftPane = new JScrollPane(leftPanel);
            leftPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
            leftPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
            rightPanel = new JPanel();
            rightPane = new JScrollPane(rightPanel);
            rightPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
            rightPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
            DefaultMutableTreeNode root = new DefaultMutableTreeNode("main_Tree");
            DefaultMutableTreeNode Branch1 = new DefaultMutableTreeNode("Branch1");
            DefaultMutableTreeNode Leaf1 = new DefaultMutableTreeNode("Leaf1");
            root.add(Branch1);
            Branch1.add(Leaf1);
            DefaultMutableTreeNode Branch2 = new DefaultMutableTreeNode("Branch2");
            DefaultMutableTreeNode Leaf2 = new DefaultMutableTreeNode("Leaf2");
            root.add(Branch2);
            Branch2.add(Leaf2);
            JTree tree = new JTree(root);
            tree.setRootVisible(true);
            tree.setShowsRootHandles(true);
            tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
            tree.addTreeSelectionListener(new TreeSelectionListener()
                public void valueChanged(TreeSelectionEvent se)
                    JTree tree = (JTree) se.getSource();
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
                    if (node == null) return;
                    String nodeInfo = node.toString();
                    if (nodeInfo.equals("Leaf1"))
                        rightPanel = new JPanel();
                        rightPanel.add(label);
                        Main.main_Frame.remove(rightPane);
                        rightPane = new JScrollPane(rightPanel);
                        rightPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
                        rightPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                        Main.main_Frame.add(rightPane, rightGBC);
                        Main.main_Frame.validate();
                        Main.main_Frame.repaint();
                    if (nodeInfo.equals("Leaf2"))
                        rightPanel = new JPanel();
                        rightPanel.add(Jbt2);
                        Main.main_Frame.remove(rightPane);
                        rightPane = new JScrollPane(rightPanel);
                        rightPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
                        rightPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                        Main.main_Frame.add(rightPane, rightGBC);
                        Main.main_Frame.validate();
                        Main.main_Frame.repaint();
            DefaultTreeCellRenderer renderer = (DefaultTreeCellRenderer) tree.getCellRenderer();
            tree.setRowHeight(30);
            renderer.setLeafIcon(new ImageIcon("blue-ball.gif"));
            renderer.setOpenIcon(new ImageIcon("red-ball.gif"));
            renderer.setClosedIcon(new ImageIcon("yellow-ball.gif"));
            renderer.setFont(new Font("Monospaced",Font.BOLD|Font.ITALIC,15));
            renderer.setTextNonSelectionColor(Color.blue);
            renderer.setTextSelectionColor(Color.white);
            renderer.setBackgroundNonSelectionColor(Color.white);
            renderer.setBackgroundSelectionColor(Color.gray);
            renderer.setBorderSelectionColor(Color.lightGray);
            leftPanel.add(tree);
            add(leftPane, leftGBC);
            add(rightPane, rightGBC);
        private JPanel leftPanel;
        private JPanel rightPanel;
        private JScrollPane leftPane;
        private JScrollPane rightPane;
        private GridBagConstraints leftGBC;
        private GridBagConstraints rightGBC;
        private JButton Jbt1 = new JButton("Button1");
        private JButton Jbt2 = new JButton("Button2");
        private JLabel label = new JLabel("Enter your message below");
        private JTextArea jta = new JTextArea(10,15);
        private JButton Jbt3 = new JButton("Button3");
        private JButton Jbt4 = new JButton("Button4");
    }

  • Execute query from report

    Hello,
    I would like to have a report wich contains a checkbox and a description. Depending on the checkboxes checked, the corresponding queries (stored in the same table, and for each description) should be executed and display the result on another page. The queries should be executed as from clicking a button.
    I have 2 question:
    1. how should I handle it for executing a query stored in a table? is it just report type sql query or something else...
    2. how can I know the exact lines (depending on the checked checkboxes when clicking the button?
    Thanks in advance!
    Regards,
    Sofie

    I'm first trying to count the checked boxes, to see if it is really doing the right thing.
    HTMLDB_APPLICATION.G_F01.COUNT counts the checked ones, right?
    so in my process i have:
    begin
    if HTMLDB_APPLICATION.G_F01.COUNT is not null then
    :P80_TEST := HTMLDB_APPLICATION.G_F01.COUNT;
    end if;
    end;
    but nothing is displayed in the field P80_TEST...
    what is wrong?
    Regards,
    Sofie
    PS: this seems to be a topic only for me :-)

  • Creating executable jar from a project

    Dear all,
    I created a GUI project with ms-access as backend. now i want to create an executable jar out of these project(all classes). so any one please guide to achieve this. I am using netbeans 5.5.
    thank you,
    ishan

    From Projects window in netbeans, right click your project, and from context menu select Properties. From Project Properties Dialog
    highlight Run which in the left pane tree.
    on the right pane select the main class of your project by writting its complete package path in the field beside "Main Class:" label, or simply click "Browse..." to choose it.
    And have a nice time.
    Thanks.
    Ahmad Elsafty

  • Error while executing queries on 0FIGL_M30

    Dear Experts
    From the business content we have installed a multiprovider 0FIGL_M30 and corresponding queries as well, data load was also sucessful but when we tried to execute queries it gives an error first error message is "0ACDOC_CC_P is not a valid characteristic for infoprovider", and the second one is "Program error in class SAPMSSY1 method: UNCAUGHT_EXCEPTION" the same errors persist for each query when I try to execute them both in Bex Analyser and in RSRT. With RSRT strange thing is, when I execute it automatically debugger get started for each execution. Can you please tell me the root cause of such kind of error.
    Thanks in advance.
    Regards,
    Chandrakant.

    Hi Pravender,
    I have checked the multiprovider its in active state and the other thing is I have checked the query I cannot see 0ACDOC_CC_P anywhere in the multiprovider as well as in queries but still it shows error related to 0ACDOC_CC_P. When I double clicked on the error message I got the below information related to the error.
    Diagnosis
    Customer enhancement RSR00002 or the implementation of BAdI RSR_OLAB_BADI delivers 0ACDOC_CC_P as the characteristic to be calculated. 1. is, however, not a valid key figure for InfoProvider .
    System Response
    The information from 0ACDOC_CC_P is ignored.
    Procedure
    Check the exit.
    Procedure for System Administration

  • Execution from right to left : a=b=c;

    Help!
    I am using a tutorial to study for the certification exam.
    Unfortunately, I do not understand the answer of a very simple question.
    Can you give me a hand on this one?
    ************* This is the Question of the tutorial ************************************
    After the execution of the code-fragment below, what will be the values of i and a?
    1.     public class CalcMe {
    2.     public static void main(String[] args) {
    3.     int [] b = {3,7};
    4.     int i = 2, a = 4;
    5.     b[i] = i = 0;
    6.     a += b;
    7.     }
    8.     }
    Answer 1 i: 0 a: 11
    Answer 2 i: 0 a: 4
    Answer 3 i: 3 a: 4
    Answer 4 An exception is thrown
    Answer 5 None of the above
    ************* This is the Answer to the Question of the tutorial ************************************
    After the execution of the code-fragment below, what will be the values of i and a?
    1. i: 0 a: 11
    2. i: 0 a: 4
    3. i: 3 a: 4
    4. An exception is thrown
    5. None of the above
    Answer 4 is correct, an ArrayIndexOutOfBoundsException is thrown at line 5. The value of i
    evaluated from the right hand side to the left, it is element b[2] that should get a value assigned,
    arrays in Java starts from 0, element 2 is out of scope.
    *************************** This is my answer *********************************************************
    Despite I read the answer (and created and run it) I still do not understand how line 5 is executed because it seems
    that the expression is evaluated from left to right instead of right to left.
    I believe that correct answer should be:
    in line 5. b[i]=i=0 if expression is executed from right to left then
    first i=0 and after that b[0]=0
    which leads to believe that the values for i & a will be : i=0 a=4
    [Copied from Complete Java 2 Certification Study Guide ISBN 0-7821-4077-7 Phillip Heller & Simon Roberts Chapter #2 Operators and Assignments Page 66]
    Given three int varibles a,b,c, the statement a=b=0; is entirely legal. It is executed from right to left,
    so that first 0 is assigned into variable c. After it has been executed, hte expression c=0 takes the value
    that was assigned to the left side - that is 0. Next, the assignment of b takes place, using the value of
    the expression to the right to the equal sign-again, 0. SImilarly, that expression takes the value that was assigned ,
    so finally the variable a is also set to 0.
    I'd appreciate an explanation

    Does this mean that the assignment of indexes in arrays have higher priority than assignment operations?
    in other words,
    b[2]= ...whatever
    will happen before anything else is evaluated in the right side of the expression.
    Is that right?
    Bingo. Section [url
    http://java.sun.com/docs/books/jls/second_edition/html/
    xpressions.doc.html#5295]15.26.1:"If the left-hand operand expression [of a simple
    assignment operator] is an array access expression
    (15.13), then many steps are required:
    # First, the array reference subexpression of the
    left-hand operand array access expression is
    evaluated. If this evaluation completes abruptly, then
    the assignment expression completes abruptly for the
    same reason; the index subexpression (of the left-hand
    operand array access expression) and the right-hand
    operand are not evaluated and no assignment occurs.
    # Otherwise, the index subexpression of the left-hand
    operand array access expression is evaluated. If this
    evaluation completes abruptly, then the assignment
    expression completes abruptly for the same reason and
    the right-hand operand is not evaluated and no
    assignment occurs.
    # Otherwise, the right-hand operand is evaluated. If
    this evaluation completes abruptly, then the
    assignment expression completes abruptly for the same
    reason and no assignment occurs."
    It then goes on to detail null checks on the array
    reference, ArrayIndexOutOfBoundsException checks, etc.

  • Can we suppress execution of a query so as to optionally execute queries in data modl

    Can we suppress execution of a query so that we optionally execute queries?0
    I have a combo box in Parameter Form. It has 3 options. I have 3 queries in Data Model.
    I want to execute only one of these 3 queries based on user's selection from combo box.
    I want that other 2 queries do NOT execute at all for that processing cycle. Next time user selects other option and an other query is executed and other 2 are NOT executed and so on.
    Is it possible in Reports 6i in Client/server?
    Pl. guide.
    Tariq

    Include:
    AND :parameter = <this query's value> (e.g. 1 or "SALES" or whatever)
    in each query's where clause. Because this is 2 constants (as far as the SQL interpreter is concerned) it will evaluate it first. If the parameter is set to a value not for this query then it will return no rows with minimal overhead.

  • How do I turn turn off the right pane in Adobe Reader XI?

    I have been using Adobe Reader since 2007, and recently I have been unable to turn off the right pane while reading. If anyone knows how I can deal with this problem, I would really appreciate it.
    Thanks
    Don Randall

    How To Turn Off The Right Pane
    To stop the "Tools|Comments" sidebar from automatically opening every time you open a PDF so that you can view your PDF in full screen, this solution worked for me on both my desktop PC and laptop.
    This is the solution:
    Go to C:\Program Files (x86)\Adobe\Reader 11.0\Reader\Services (for win7 64-bit) or C:\Program Files\Adobe\Reader 11.0\Reader\Services (for win7 32-bit)
    Find and Delete these 2 files: DEXShare.spi and DEXEchoSign.spi
    Yes, you will still see the word "Tools| Comments" at the top but at least your PDFs will open in full screen and you won't have to click "Tools" to hide that stupid sidebar every time you open a PDF.

  • Save As - right pane only

    I have a Java applet that displays a tree of objects and documents on the left pane of the browser, and on the right pane it displays the actual documents (such as a MS Word document). In IE 4 and I think IE5 too, when you went to the Save As menu option it would prompt to save that document in it's proper format, however, in IE6, if you do the Save As, it proceeds to save the entire page with a subdirectory containing the document..this is not what i want...I want it to behave the same way it did in the earlier versions of IE.
    I've now added a context menu item, but I don't know what Java code I need to use in order to just save the document pane. Any help would be appreciated,
    Thanks.

    What isn't clear? When I go to the web site it displays a treeview of documents\objects in the left frame and when I select an object in the left frame, it displays the corresponding document in the right frame. All that is fine. However when using Internet Explorer 6 and I go to the File Menu and select Save As, it prompts to save the entire html pages. I only want it to save the document in it's original native format...not all the html pages. This worked fine with Internet Explorer 4 and Internet Explorer 5. Seems like Microsoft changed the way it saved in IE6.
    So as a result I want to add a menu item to the context menu for just saving the document and not saving the enitre html code and related files for that page.
    To see what I mean go to a web page that has frames and do a save as, and it will save everything and put the files from the right frame into a subdirectory of the same save file name.
    I hope that makes sense.

  • Reading Queries from within planning functions

    Hi all,
    Does anyone of you have experience with the following thrilling task: We want to read specific queries from within a BPS function, handing over parameters like company code and profit center, retrieving the query results and writing them into a cube.
    Is this feasible and would anyone know about the function modules to use?
    Many thanks in advance,
    Andreas Krüger

    Andreas,
    I found a soultion for your problem.
    I tried at in my system and it works fine.
    Pl do the following:
    1. Have a multiarea with actual and plan areas or have one area but make sure you load data from actual to plan.
    2. In the level, select all the charactetirtics and key figures that you wish to see in the report.
    3. Make a layout and configure it accordingly. If header has mutiple values, make sure you have a variable on that.
    4.Make a folder and execute it.
    5. When the folder is opened, all the data in the cube will be displayed in the change mode.
    6. View the date and change them if you wish, save.
    Let me know if you ned any help.
    Ravi Thothadri

  • Tracing queries from abap to a custom database via dblink

    I' m connecting to a database by dblink (name magiap).
    I would like to know if somewhere I can trace all the queries from abap to oracle in this specific session , to dbs ='MAGIAP'.
    For istance, i would like that the query "SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" = '305142941' will be stored some where (in a file??).
    I would like that parameters - w_CODPARTY- will be substituted and stored in the trace file with the value (305142941), as shown in the previous
    Here is the piece of code ..(a very short example of course)..
    DATA : dbs LIKE dbcon-con_name,
    v_CODPARTY(15),
    v_DESPARTY1(60).
    data : w_CODPARTY(15) value '305142941'.
    dbs = 'MAGIAP'.
    TRY.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    IF sy-subrc <> 0.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    ENDIF.
    IF sy-subrc <> 0.
    * RAISE err_conn_aea.
    ENDIF.
    EXEC SQL.
    set connection :dbs
    ENDEXEC.
    EXEC SQL .
    SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" = :w_CODPARTY
    ENDEXEC.
    IF sy-subrc NE 0.
    * rc = 4.
    ENDIF.
    EXEC SQL.
    DISCONNECT :dbs
    ENDEXEC.
    ENDTRY.

    Hi Silvana,
    The SQL statements have been stored in the SQL Cursor Cache, on the database and they will be available until they have been invalidated. You can access the statements at the 'MAGIAP' side and see the last executed queries in the cache.
    You can access bind variables by query on the V$SQL_BIND_CAPTURE table, also.
    On the other hand, you can activate the trace by the statement, below;
    ALTER SYSTEM SET sql_trace = true SCOPE=MEMORY;
    Then, the sql statements will be available in the usertrace file. Please note that you should execute and investigate all the statements that I noted above, at the remote side. Plus, as far as I know that it is not able to distinguish the records by the "dblink name". You should check all the statements and try to figure out what queries have been executed remotely.
    Best regards,
    Orkun Gedik

  • Trace queries from abap to a custom oracle database via dblink

    I' m
    connecting to a database by dblink (name magiap).
    I
    would like to know if somewhere I can trace all the queries from abap to oracle
    in this specific session , to dbs ='MAGIAP'.
    For istance, i would like that the query
    "SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" = '305142941' will
    be stored some where (in a file??).
    I would like that parameters - w_CODPARTY- will be substituted and stored in the trace
    file with the value (305142941), as shown in the previous
    Here
    is the piece of code ..(a very short example of course)..
    DATA : dbs LIKE dbcon-con_name,
    v_CODPARTY(15),
    v_DESPARTY1(60).
    data : w_CODPARTY(15) value '305142941'.
    dbs = 'MAGIAP'.
    TRY.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    IF sy-subrc <> 0.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    ENDIF.
    IF sy-subrc <> 0.
    * RAISE err_conn_aea.
    ENDIF.
    EXEC SQL.
    set connection :dbs
    ENDEXEC.
    EXEC SQL .
    SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" =
    :w_CODPARTY
    ENDEXEC.
    IF sy-subrc NE 0.
    * rc = 4.
    ENDIF.
    EXEC SQL.
    DISCONNECT :dbs
    ENDEXEC.
    ENDTRY.

    Hi Silvana,
    The SQL statements have been stored in the SQL Cursor Cache, on the database and they will be available until they have been invalidated. You can access the statements at the 'MAGIAP' side and see the last executed queries in the cache.
    You can access bind variables by query on the V$SQL_BIND_CAPTURE table, also.
    On the other hand, you can activate the trace by the statement, below;
    ALTER SYSTEM SET sql_trace = true SCOPE=MEMORY;
    Then, the sql statements will be available in the usertrace file. Please note that you should execute and investigate all the statements that I noted above, at the remote side. Plus, as far as I know that it is not able to distinguish the records by the "dblink name". You should check all the statements and try to figure out what queries have been executed remotely.
    Best regards,
    Orkun Gedik

  • Calling MS Access queries from Java

    Anyone have any idea if it's possible to call MS Access queries from Java? I have a client who is insistent on keeping MS Access for their database, and it'd be nice if I didn't have to receate all their queries in Java.
    I've successfully connected to and queried the Access MDB, but I need to know if it's even possible to execute the stored MS Access queries they have setup in the database.
    Thanks!

    See reply 6 in the following....
    http://forum.java.sun.com/thread.jspa?forumID=48&threadID=203818

Maybe you are looking for

  • SE80 - view layout property dropdowns not working

    Hello, I am trying to edit a webdynpro view in SE80.  On the layout tab I have selected a UI element and now I am trying to adjust the properties.  I am facing a problem where I do not receive standard dropdowns for the properties.   One example is I

  • Target Upload

    Hi Gurus, We will now start to load our target data in 7KEX (EC-PCA Planning) for January to December 2010. Is there a way where we can lock 2009 for target upload. Our concern is that there might be a chance or possiblity that the peeople who will l

  • Solution for Jewelery in SAP for Retail

    Hi All Can you please share some experience on Jewelery implementation for any customer on SAP for Retail platform.How our Retail solution is suited to Jewelery retailers.Any documentation on Key business Proces's used by retailers and solutioning in

  • IPhoto Hangs at start

    I am totally up to date on the installs/updates. Went into IPhoto today and white screen, spinning pointer, totally hangs. Need to Force Quit to exit the mess. I am afraid that I'll lose all my photos/movies, so I didn't install it over again. If tha

  • How much do apple charge to replace lock buttons? iPod touch 4g

    My brother has dropped his iPod touch and it landed on the lock button, the button no longer works. Does anyone know how much apple charge to replace it?