MS Access connectivity gets slow when connecting insidde network domain

Hello,<o:p></o:p>
We've created an application based on Excel VBA that connects to an access DB located at the file server in our network domain. Now I'm installing
same app in another server for another domain, but the connection is really slow so the app hangs while retrieving information from the .mdb file located at the server.<o:p></o:p>
I created a local environment in my computer to test and realized as as soon as I connect the network cable the connection to the DB get slow, but
when I unplug the network cable the app start to responding as usual.<o:p></o:p>
I'm using Ole DB jet 4.0 with the following connection string:<o:p></o:p>
cnt.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= MasterDB ;Jet OLEDB:Database Password= 12345;"<o:p></o:p>
It seems that the problem it is related to some authentication on the server that makes the connectivity slow because it has not sense to me that
when I connect the network cable and log into the domain the speed goes down even if the application is looking to the DB file in mi local hard drive.<o:p></o:p>

I'd try them over here.
Office
Access forums on Microsoft Answers
Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows]
Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Similar Messages

  • When connecting to my wifi I get ! When looking for networks

    When connecting to my wifi I get ! When looking for networks
    I

    When you see an exclamation point in the Wi-Fi menu, from the menu bar, select
     ▹ System Preferences... ▹ Network
    Click the Assist me button and select Assistant. Follow the prompts. You may get a warning that Wi-Fi is not available, that you're too far from the base station, or that you're using the wrong password.
    Assuming that you've ruled out those possibilities, click the lock icon in the lower left corner of the preference pane and authenticate, if necessary. From the Location menu at the top of the window, select Edit Locations. A sheet will drop down. Click the plus-sign button to create a new location. Give it any name you want. In the new location, set up the Wi-Fi service with the same settings you used before. Click Apply and test.

  • I got macbook pro 13" i bought in 2011 but its now getting slow when i start up or when shutting down .and apps takes time to open like just bouncing????????

    i got macbook pro 13" i bought in 2011 but its now getting slow when i start up or when shutting down .and apps takes time to open like just bouncing????????

    See the Mac OS X Speed FAQ.

  • Labview visa getting slow when connected to arduino

    visa in labview when connected to arduino prog gets slow
    i have checked it passes the required codde but action is slow
    and most important every time to get the o/p i need to stop the prog then start again.
    i tried doing a new prog with only one string constant and visa in  singlw while loop thinking this was due to lenghty progs but still things are not working as i want i.e. fast n without stopping the prog. i have attached my files n images of required portion of block diag
    i have used a string of lenght 10 char n i my program and just one visa write.
    Solved!
    Go to Solution.

    Ranjeet_Singh my requirement is to send 10 character srting from visa write to arduino. When i change the controller index and click on my led's which i have designed to transmit my code( only if true) using case selctor the code must reach arduino. It reaches but there is a delay of 2 to 3seconds everytime i send. and next time when i change th index and click the led to send the code it is not passed. when i run the program again it is passed. I have added all my code in a single while loop which runs continously.
    I have made a code in arduino for my hardware. when i send codes from arduino my hardware runs successflly.
    n yes only command response operation is involved.
    regarding 2011 i wont be able to i guess.but i am copy pasting my prog in labview 7.1. except visa everythig is pasted i guess.
    i have attached images of my block diagram for further reference.
    my harware is: two 8bit DAC, DDS an i.c. which accepts code and generates sinwave, digital potentiometer which accepts code and takes a value between 0 to 10kohm and 12 relays take thier control signal from this code.
    crossrulz m using port 18 of my p.c and connecting usb to arduino mega 2560. 
    my harware is: two 8bit DAC, DDS an i.c. which accepts code and generates sinwave, digital potentiometer which accepts code and takes a value between 0 to 10kohm and 12 relays take thier control signal from this code.
    i judge labview goes slow because when i dont connect arduino n run the prog the hex code indicator going to visa displays code exactly at the instant when i press led for transmission of code.
    as per ur sugesstion  i checked arduino board i found thr transmission and recieve led's are on continously.and as per my labview prog my transmission should actually start only when i click the led.may due to continues transmissiion its getting slow. 
    but what can i do then? 

  • My mac gets slow when I play music from my iTunes library

    Hi, aproximately six months ago I noticed that everytime I play music from my iTunes library that its stored in my 27" iMac's hard drive, the computer gets slow, the images start to flicker, the animatios on the dock and the one when u minimize or maximaze the windows, also flicker. As soon as I close iTunes the computer works fine again. When I play music from a CD this doesn't happen.
    I've taken the iMac to two service providers along theese 6 months and neighther have been able to fix the issue. What they have diagnozed is an issue with the hard drive which has been changed 4 times already.
    What could be the issue?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Animation gets slow when program needs a Garbage Collect.

    So nonetheless, I should probably develop a new animation algorithm, yes?
    I am looping through a seperate thread that calls the setSize() methods a bunch of times. Works really nice when memory isnt bad, but when I need to garbage collect, and apparantly java doesnt agree, it gets really slow. Later one is really able to see when a GC is actually done, and it goes back to normal.
    Here is my algorithm,
    public static boolean raisePanel(final VCMSComponentFrame p, final boolean anim)
            if (p.getState() == VCMSComponentFrame.State.RAISED ||
                p.getState() == VCMSComponentFrame.State.ANIMATING)
                return false;
            new Thread(new Runnable()
                public void run()
                    p.setState(VCMSComponentFrame.State.ANIMATING);
                    if (anim)
                        for (int i = p.getHeight(); i <= FULL_PANEL_HEIGHT; i++)
                            try
                                p.setSize(p.getWidth(), i);
                                JComponent parent = (JComponent)p.getParent();
                                int index = findIndex(p);
                                for (int j = index + 1; j < parent.getComponentCount() && j != 0; j++)
                                     parent.getComponent(j).setLocation(parent.getComponent(j).getX(), parent.getComponent(j).getY() + 1);
                                //Viewport Panel
                                parent.setSize(parent.getWidth(), parent.getHeight() + 1);
                                //Structure Frame
                                VCMSStructurePanel panel = (VCMSStructurePanel)parent.getParent();
                                parent.getParent().setSize(panel.getWidth(), panel.getHeight() + 1);
                                //Structure Siblings.
                                JPanel master = (JPanel)panel.getParent();
                                index = findStructureIndex(panel);
                                for (int j = index + 1; j < master.getComponentCount() && j != 0; j++)
                                    master.getComponent(j).setLocation(master.getComponent(j).getX(), master.getComponent(j).getY() + 1);
                                Thread.sleep(1);
                            catch (Exception ex)
                    else
                        p.setSize(p.getWidth(), FULL_PANEL_HEIGHT);
                        JPanel parent = (JPanel)p.getParent();
                        int index = findIndex(p);
                        //Viewport Panel
                        parent.setSize(parent.getWidth(), parent.getHeight() + FULL_PANEL_HEIGHT - SHORT_PANEL_HEIGHT);
                        //Structure Frame
                        VCMSStructurePanel panel = (VCMSStructurePanel)parent.getParent();
                        parent.getParent().setSize(panel.getWidth(), panel.getHeight() + FULL_PANEL_HEIGHT - SHORT_PANEL_HEIGHT);
                        //Component Siblings
                        for (int j = index + 1; j < parent.getComponentCount() && j != 0; j++)
                            parent.getComponent(j).setLocation((int)parent.getComponents()[j].getLocation().getX(), (int)parent.getComponents()[j].getLocation().getY() + FULL_PANEL_HEIGHT - SHORT_PANEL_HEIGHT);
                        //Structure Grandparent
                        JPanel master = (JPanel)panel.getParent();
                        index = findStructureIndex(panel);
                        for (int j = index + 1; j < master.getComponentCount() && j != 0; j++)
                            master.getComponent(j).setLocation((int)master.getComponent(j).getLocation().getX(), (int)master.getComponent(j).getLocation().getY() + FULL_PANEL_HEIGHT - SHORT_PANEL_HEIGHT);
                    p.setState(VCMSComponentFrame.State.RAISED);
            }).start();
            //System.gc();
            return true;
        }any help appreciated!

    sierratech wrote:
    Only a guess, but this may have something to do with Threads and Swing.
    http://java.sun.com/products/jfc/tsc/articles/threads/threads1.html.
    Many Swing updates should be called in the Event Dispatch thread, and it looks like you may be calling some of these in your new Thread.
    Try using SwingUtilities.invokeLater() and see if that helps. Alternatively, rewrite your code to remove the Thread and do everything in the event Dispatch thread using javax.swing.Timer. Again, just a guessThanks for the Idea, but this option doesnt even show the animation.
    One Idea I got from a "Swing Hacks" directory works like this:
    Remove the components for animation.
    Create an image of the components.
    Overide the Paint method.
    Animate the images via paint method.
    Remove the images.
    Add back the components.
    But I look at that and my stomach cringes.
    Any other Ideas?

  • Query  getting slow when i execute second time--- anybody pls help

    here is the query
    SELECT FOOD.FOOD_NR, FOOD.FOOD_NAME, MEAL_DISH_FOOD.SERVING_AMT, MEAL_DISH_FOOD.MEASURE_UNIT_NR, MEAL.MEAL_NR,
    MEAL.MEAL_TYPE_CODE, MEAL.MEAL_NAME, MEAL.CALORIC_DEFICIT, MEAL.CARB_GRAMS, MEAL.PROTEIN_GRAMS,
    MEAL.FAT_GRAMS, DISH.DISH_NR, DISH.DISH_NAME, DISH.INSTRUCTIONS
    FROM MEAL, MEAL_DISH_FOOD, FOOD, DISH
    WHERE MEAL.MEAL_NR = MEAL_DISH_FOOD.MEAL_NR AND FOOD.FOOD_NR = MEAL_DISH_FOOD.FOOD_NR AND
    DISH.DISH_NR = MEAL_DISH_FOOD.DISH_NR AND
         MEAL.MEAL_NR IN (SELECT MEAL.MEAL_NR FROM (SELECT MEAL_NR FROM
         (SELECT DISTINCT FILTER_SET.MEAL_NR, SUM(VAR) SCOPE, COUNT(FILTER_SET.MEAL_NR) CATCOUNT FROM
         (SELECT MEAL_NR, SUM(ABS(CARB_GRAMS - ?)) VAR FROM MEAL WHERE MEAL.MEAL_TYPE_CODE = ?
         AND MEAL.DIETARY_RESTRICTION_NR IN (?) AND MEAL.IS_CUSTOM = 'N' AND MEAL.IS_DELETED = 'N' AND
         PREPARATION_TYPE_CODE IN (?) AND MEAL.by_person_nr = 0 GROUP BY MEAL_NR
         UNION ALL
         SELECT MEAL_NR, SUM(ABS(PROTEIN_GRAMS - ?)) VAR FROM MEAL
         WHERE MEAL.MEAL_TYPE_CODE = ? AND MEAL.DIETARY_RESTRICTION_NR IN (?) AND
         MEAL.IS_CUSTOM = 'N' AND MEAL.IS_DELETED = 'N' AND
    PREPARATION_TYPE_CODE IN (?) AND MEAL.by_person_nr = 0 GROUP BY MEAL_NR
         UNION ALL
         SELECT MEAL_NR, SUM(ABS(FAT_GRAMS - ?)) VAR FROM MEAL
         WHERE MEAL.MEAL_TYPE_CODE = ? AND MEAL.DIETARY_RESTRICTION_NR IN (?) AND
         MEAL.IS_CUSTOM = 'N' AND MEAL.IS_DELETED = 'N' AND
         PREPARATION_TYPE_CODE IN (?) AND MEAL.by_person_nr = 0 GROUP BY MEAL_NR)
         FILTER_SET GROUP BY FILTER_SET.MEAL_NR) WHERE CATCOUNT = 3 ORDER BY SCOPE) WEIGHTED_SET, MEAL
         WHERE MEAL.MEAL_NR = WEIGHTED_SET.MEAL_NR AND ROWNUM &lt;= ? AND MEAL.by_person_nr = 0)
    Regards
    Sathish

    STATEMENT_ID     TIMESTAMP     REMARKS     OPERATION     OPTIONS     OBJECT_NODE     OBJECT_OWNER     OBJECT_NAME     OBJECT_INSTANCE     OBJECT_TYPE     OPTIMIZER     SEARCH_COLUMNS     ID     PARENT_ID     POSITION     COST     CARDINALITY     BYTES     OTHER_TAG     PARTITION_START     PARTITION_STOP     PARTITION_ID     OTHER     DISTRIBUTION     CPU_COST     IO_COST     TEMP_SPACE     ACCESS_PREDICATES     FILTER_PREDICATES
    q2     09/08/2005 21:15:05          SELECT STATEMENT                                   CHOOSE          0.00          77.00     77.00     2.00     716.00                                        77.00               
    q2     09/08/2005 21:15:05          NESTED LOOPS                                             1.00     0.00     1.00     77.00     2.00     716.00                                        77.00               
    q2     09/08/2005 21:15:05          NESTED LOOPS                                             2.00     1.00     1.00     73.00     2.00     662.00                                        73.00               
    q2     09/08/2005 21:15:05          NESTED LOOPS                                             3.00     2.00     1.00     71.00     2.00     128.00                                        71.00               
    q2     09/08/2005 21:15:05          NESTED LOOPS                                             4.00     3.00     1.00     68.00     1.00     48.00                                        68.00               
    q2     09/08/2005 21:15:05          VIEW               SYS     VW_NSO_1                         5.00     4.00     1.00     62.00     1.00     13.00                                                       
    q2     09/08/2005 21:15:05          SORT     UNIQUE                                        6.00     5.00     1.00          1.00     21.00                                                       
    q2     09/08/2005 21:15:05          COUNT     STOPKEY                                        7.00     6.00     1.00                                                                      ROWNUM<=5
    q2     09/08/2005 21:15:05          NESTED LOOPS                                             8.00     7.00     1.00     62.00     1.00     21.00                                        62.00               
    q2     09/08/2005 21:15:05          VIEW               ISHADMIN          5.00                    9.00     8.00     1.00     56.00     3.00     39.00                                                       
    q2     09/08/2005 21:15:05          SORT     ORDER BY                                        10.00     9.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/08/2005 21:15:05          FILTER                                             11.00     10.00     1.00                                                                      COUNT("FILTER_SET"."MEAL_NR")=3
    q2     09/08/2005 21:15:05          SORT     GROUP BY                                        12.00     11.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/08/2005 21:15:05          VIEW               ISHADMIN          7.00                    13.00     12.00     1.00     48.00     3.00     78.00                                                       
    q2     09/08/2005 21:15:05          UNION-ALL                                             14.00     13.00     1.00                                                                      
    q2     09/08/2005 21:15:05          SORT     GROUP BY                                        15.00     14.00     1.00     16.00     1.00     18.00                                        16.00               
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     8.00          ANALYZED          16.00     15.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/08/2005 21:15:05          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     17.00     16.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/08/2005 21:15:05          SORT     GROUP BY                                        18.00     14.00     2.00     16.00     1.00     18.00                                        16.00               
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     9.00          ANALYZED          19.00     18.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/08/2005 21:15:05          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     20.00     19.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/08/2005 21:15:05          SORT     GROUP BY                                        21.00     14.00     3.00     16.00     1.00     18.00                                        16.00               
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     10.00          ANALYZED          22.00     21.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/08/2005 21:15:05          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     23.00     22.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     11.00          ANALYZED          24.00     8.00     2.00     2.00     1.00     8.00                                        2.00               "MEAL"."BY_PERSON_NR"=0
    q2     09/08/2005 21:15:05          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     25.00     24.00     1.00     1.00     9,832.00                                             1.00          "MEAL"."MEAL_NR"="WEIGHTED_SET"."MEAL_NR"     
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     1.00          ANALYZED          26.00     4.00     2.00     2.00     1.00     35.00                                        2.00               
    q2     09/08/2005 21:15:05          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     27.00     26.00     1.00     1.00     1.00                                             1.00          "MEAL"."MEAL_NR"="VW_NSO_1"."$nso_col_1"     
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL_DISH_FOOD     2.00          ANALYZED          28.00     3.00     2.00     3.00     2.00     32.00                                        3.00               
    q2     09/08/2005 21:15:05          INDEX     RANGE SCAN          ISHADMIN     MEAL_DISH_FOOD_QX124          NON-UNIQUE     ANALYZED     1.00     29.00     28.00     1.00     2.00     4.00                                             2.00          "MEAL"."MEAL_NR"="MEAL_DISH_FOOD"."MEAL_NR"     
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     DISH     4.00          ANALYZED          30.00     2.00     2.00     1.00     1.00     267.00                                        1.00               
    q2     09/08/2005 21:15:05          INDEX     UNIQUE SCAN          ISHADMIN     DISH_PK          UNIQUE     ANALYZED     1.00     31.00     30.00     1.00          1.00                                                       "DISH"."DISH_NR"="MEAL_DISH_FOOD"."DISH_NR"     
    q2     09/08/2005 21:15:05          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     FOOD     3.00          ANALYZED          32.00     1.00     2.00     2.00     1.00     27.00                                        2.00               
    q2     09/08/2005 21:15:05          INDEX     UNIQUE SCAN          ISHADMIN     FOOD_PK          UNIQUE     ANALYZED     1.00     33.00     32.00     1.00     1.00     1.00                                             1.00          "FOOD"."FOOD_NR"="MEAL_DISH_FOOD"."FOOD_NR"     
    q2     09/11/2005 21:23:49          SELECT STATEMENT                                   CHOOSE          0.00          77.00     77.00     2.00     716.00                                        77.00               
    q2     09/11/2005 21:23:49          NESTED LOOPS                                             1.00     0.00     1.00     77.00     2.00     716.00                                        77.00               
    q2     09/11/2005 21:23:49          NESTED LOOPS                                             2.00     1.00     1.00     73.00     2.00     662.00                                        73.00               
    q2     09/11/2005 21:23:49          NESTED LOOPS                                             3.00     2.00     1.00     71.00     2.00     128.00                                        71.00               
    q2     09/11/2005 21:23:49          NESTED LOOPS                                             4.00     3.00     1.00     68.00     1.00     48.00                                        68.00               
    q2     09/11/2005 21:23:49          VIEW               SYS     VW_NSO_1                         5.00     4.00     1.00     62.00     1.00     13.00                                                       
    q2     09/11/2005 21:23:49          SORT     UNIQUE                                        6.00     5.00     1.00          1.00     21.00                                                       
    q2     09/11/2005 21:23:49          COUNT     STOPKEY                                        7.00     6.00     1.00                                                                      ROWNUM<=5
    q2     09/11/2005 21:23:49          NESTED LOOPS                                             8.00     7.00     1.00     62.00     1.00     21.00                                        62.00               
    q2     09/11/2005 21:23:49          VIEW               ISHADMIN          5.00                    9.00     8.00     1.00     56.00     3.00     39.00                                                       
    q2     09/11/2005 21:23:49          SORT     ORDER BY                                        10.00     9.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/11/2005 21:23:49          FILTER                                             11.00     10.00     1.00                                                                      COUNT("FILTER_SET"."MEAL_NR")=3
    q2     09/11/2005 21:23:49          SORT     GROUP BY                                        12.00     11.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/11/2005 21:23:49          VIEW               ISHADMIN          7.00                    13.00     12.00     1.00     48.00     3.00     78.00                                                       
    q2     09/11/2005 21:23:49          UNION-ALL                                             14.00     13.00     1.00                                                                      
    q2     09/11/2005 21:23:49          SORT     GROUP BY                                        15.00     14.00     1.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     8.00          ANALYZED          16.00     15.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:23:49          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     17.00     16.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:23:49          SORT     GROUP BY                                        18.00     14.00     2.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     9.00          ANALYZED          19.00     18.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:23:49          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     20.00     19.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:23:49          SORT     GROUP BY                                        21.00     14.00     3.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     10.00          ANALYZED          22.00     21.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:23:49          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     23.00     22.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     11.00          ANALYZED          24.00     8.00     2.00     2.00     1.00     8.00                                        2.00               "MEAL"."BY_PERSON_NR"=0
    q2     09/11/2005 21:23:49          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     25.00     24.00     1.00     1.00     9,832.00                                             1.00          "MEAL"."MEAL_NR"="WEIGHTED_SET"."MEAL_NR"     
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     1.00          ANALYZED          26.00     4.00     2.00     2.00     1.00     35.00                                        2.00               
    q2     09/11/2005 21:23:49          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     27.00     26.00     1.00     1.00     1.00                                             1.00          "MEAL"."MEAL_NR"="VW_NSO_1"."$nso_col_1"     
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL_DISH_FOOD     2.00          ANALYZED          28.00     3.00     2.00     3.00     2.00     32.00                                        3.00               
    q2     09/11/2005 21:23:49          INDEX     RANGE SCAN          ISHADMIN     MEAL_DISH_FOOD_QX124          NON-UNIQUE     ANALYZED     1.00     29.00     28.00     1.00     2.00     4.00                                             2.00          "MEAL"."MEAL_NR"="MEAL_DISH_FOOD"."MEAL_NR"     
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     DISH     4.00          ANALYZED          30.00     2.00     2.00     1.00     1.00     267.00                                        1.00               
    q2     09/11/2005 21:23:49          INDEX     UNIQUE SCAN          ISHADMIN     DISH_PK          UNIQUE     ANALYZED     1.00     31.00     30.00     1.00          1.00                                                       "DISH"."DISH_NR"="MEAL_DISH_FOOD"."DISH_NR"     
    q2     09/11/2005 21:23:49          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     FOOD     3.00          ANALYZED          32.00     1.00     2.00     2.00     1.00     27.00                                        2.00               
    q2     09/11/2005 21:23:49          INDEX     UNIQUE SCAN          ISHADMIN     FOOD_PK          UNIQUE     ANALYZED     1.00     33.00     32.00     1.00     1.00     1.00                                             1.00          "FOOD"."FOOD_NR"="MEAL_DISH_FOOD"."FOOD_NR"     
    q2     09/11/2005 21:21:46          SELECT STATEMENT                                   CHOOSE          0.00          77.00     77.00     2.00     716.00                                        77.00               
    q2     09/11/2005 21:21:46          NESTED LOOPS                                             1.00     0.00     1.00     77.00     2.00     716.00                                        77.00               
    q2     09/11/2005 21:21:46          NESTED LOOPS                                             2.00     1.00     1.00     73.00     2.00     662.00                                        73.00               
    q2     09/11/2005 21:21:46          NESTED LOOPS                                             3.00     2.00     1.00     71.00     2.00     128.00                                        71.00               
    q2     09/11/2005 21:21:46          NESTED LOOPS                                             4.00     3.00     1.00     68.00     1.00     48.00                                        68.00               
    q2     09/11/2005 21:21:46          VIEW               SYS     VW_NSO_1                         5.00     4.00     1.00     62.00     1.00     13.00                                                       
    q2     09/11/2005 21:21:46          SORT     UNIQUE                                        6.00     5.00     1.00          1.00     21.00                                                       
    q2     09/11/2005 21:21:46          COUNT     STOPKEY                                        7.00     6.00     1.00                                                                      ROWNUM<=5
    q2     09/11/2005 21:21:46          NESTED LOOPS                                             8.00     7.00     1.00     62.00     1.00     21.00                                        62.00               
    q2     09/11/2005 21:21:46          VIEW               ISHADMIN          5.00                    9.00     8.00     1.00     56.00     3.00     39.00                                                       
    q2     09/11/2005 21:21:46          SORT     ORDER BY                                        10.00     9.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/11/2005 21:21:46          FILTER                                             11.00     10.00     1.00                                                                      COUNT("FILTER_SET"."MEAL_NR")=3
    q2     09/11/2005 21:21:46          SORT     GROUP BY                                        12.00     11.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/11/2005 21:21:46          VIEW               ISHADMIN          7.00                    13.00     12.00     1.00     48.00     3.00     78.00                                                       
    q2     09/11/2005 21:21:46          UNION-ALL                                             14.00     13.00     1.00                                                                      
    q2     09/11/2005 21:21:46          SORT     GROUP BY                                        15.00     14.00     1.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     8.00          ANALYZED          16.00     15.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:21:46          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     17.00     16.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:21:46          SORT     GROUP BY                                        18.00     14.00     2.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     9.00          ANALYZED          19.00     18.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:21:46          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     20.00     19.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:21:46          SORT     GROUP BY                                        21.00     14.00     3.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     10.00          ANALYZED          22.00     21.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:21:46          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     23.00     22.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     11.00          ANALYZED          24.00     8.00     2.00     2.00     1.00     8.00                                        2.00               "MEAL"."BY_PERSON_NR"=0
    q2     09/11/2005 21:21:46          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     25.00     24.00     1.00     1.00     9,832.00                                             1.00          "MEAL"."MEAL_NR"="WEIGHTED_SET"."MEAL_NR"     
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     1.00          ANALYZED          26.00     4.00     2.00     2.00     1.00     35.00                                        2.00               
    q2     09/11/2005 21:21:46          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     27.00     26.00     1.00     1.00     1.00                                             1.00          "MEAL"."MEAL_NR"="VW_NSO_1"."$nso_col_1"     
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL_DISH_FOOD     2.00          ANALYZED          28.00     3.00     2.00     3.00     2.00     32.00                                        3.00               
    q2     09/11/2005 21:21:46          INDEX     RANGE SCAN          ISHADMIN     MEAL_DISH_FOOD_QX124          NON-UNIQUE     ANALYZED     1.00     29.00     28.00     1.00     2.00     4.00                                             2.00          "MEAL"."MEAL_NR"="MEAL_DISH_FOOD"."MEAL_NR"     
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     DISH     4.00          ANALYZED          30.00     2.00     2.00     1.00     1.00     267.00                                        1.00               
    q2     09/11/2005 21:21:46          INDEX     UNIQUE SCAN          ISHADMIN     DISH_PK          UNIQUE     ANALYZED     1.00     31.00     30.00     1.00          1.00                                                       "DISH"."DISH_NR"="MEAL_DISH_FOOD"."DISH_NR"     
    q2     09/11/2005 21:21:46          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     FOOD     3.00          ANALYZED          32.00     1.00     2.00     2.00     1.00     27.00                                        2.00               
    q2     09/11/2005 21:21:46          INDEX     UNIQUE SCAN          ISHADMIN     FOOD_PK          UNIQUE     ANALYZED     1.00     33.00     32.00     1.00     1.00     1.00                                             1.00          "FOOD"."FOOD_NR"="MEAL_DISH_FOOD"."FOOD_NR"     
    q2     09/11/2005 21:23:02          SELECT STATEMENT                                   CHOOSE          0.00          77.00     77.00     2.00     716.00                                        77.00               
    q2     09/11/2005 21:23:02          NESTED LOOPS                                             1.00     0.00     1.00     77.00     2.00     716.00                                        77.00               
    q2     09/11/2005 21:23:02          NESTED LOOPS                                             2.00     1.00     1.00     73.00     2.00     662.00                                        73.00               
    q2     09/11/2005 21:23:02          NESTED LOOPS                                             3.00     2.00     1.00     71.00     2.00     128.00                                        71.00               
    q2     09/11/2005 21:23:02          NESTED LOOPS                                             4.00     3.00     1.00     68.00     1.00     48.00                                        68.00               
    q2     09/11/2005 21:23:02          VIEW               SYS     VW_NSO_1                         5.00     4.00     1.00     62.00     1.00     13.00                                                       
    q2     09/11/2005 21:23:02          SORT     UNIQUE                                        6.00     5.00     1.00          1.00     21.00                                                       
    q2     09/11/2005 21:23:02          COUNT     STOPKEY                                        7.00     6.00     1.00                                                                      ROWNUM<=5
    q2     09/11/2005 21:23:02          NESTED LOOPS                                             8.00     7.00     1.00     62.00     1.00     21.00                                        62.00               
    q2     09/11/2005 21:23:02          VIEW               ISHADMIN          5.00                    9.00     8.00     1.00     56.00     3.00     39.00                                                       
    q2     09/11/2005 21:23:02          SORT     ORDER BY                                        10.00     9.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/11/2005 21:23:02          FILTER                                             11.00     10.00     1.00                                                                      COUNT("FILTER_SET"."MEAL_NR")=3
    q2     09/11/2005 21:23:02          SORT     GROUP BY                                        12.00     11.00     1.00     56.00     3.00     78.00                                        56.00               
    q2     09/11/2005 21:23:02          VIEW               ISHADMIN          7.00                    13.00     12.00     1.00     48.00     3.00     78.00                                                       
    q2     09/11/2005 21:23:02          UNION-ALL                                             14.00     13.00     1.00                                                                      
    q2     09/11/2005 21:23:02          SORT     GROUP BY                                        15.00     14.00     1.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     8.00          ANALYZED          16.00     15.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:23:02          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     17.00     16.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:23:02          SORT     GROUP BY                                        18.00     14.00     2.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     9.00          ANALYZED          19.00     18.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:23:02          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     20.00     19.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:23:02          SORT     GROUP BY                                        21.00     14.00     3.00     16.00     1.00     18.00                                        16.00               
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     10.00          ANALYZED          22.00     21.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q2     09/11/2005 21:23:02          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     23.00     22.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     11.00          ANALYZED          24.00     8.00     2.00     2.00     1.00     8.00                                        2.00               "MEAL"."BY_PERSON_NR"=0
    q2     09/11/2005 21:23:02          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     25.00     24.00     1.00     1.00     9,832.00                                             1.00          "MEAL"."MEAL_NR"="WEIGHTED_SET"."MEAL_NR"     
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     1.00          ANALYZED          26.00     4.00     2.00     2.00     1.00     35.00                                        2.00               
    q2     09/11/2005 21:23:02          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     27.00     26.00     1.00     1.00     1.00                                             1.00          "MEAL"."MEAL_NR"="VW_NSO_1"."$nso_col_1"     
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL_DISH_FOOD     2.00          ANALYZED          28.00     3.00     2.00     3.00     2.00     32.00                                        3.00               
    q2     09/11/2005 21:23:02          INDEX     RANGE SCAN          ISHADMIN     MEAL_DISH_FOOD_QX124          NON-UNIQUE     ANALYZED     1.00     29.00     28.00     1.00     2.00     4.00                                             2.00          "MEAL"."MEAL_NR"="MEAL_DISH_FOOD"."MEAL_NR"     
    q2     09/11/2005 21:23:02          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     DISH     4.00          ANALYZED          30.00     2.00     2.00     1.00     1.00     267.00                                        1.00               
    q2     09/11/2005 21:23:02          INDEX     UNIQUE SCAN          ISHADMIN     DISH_PK          UNIQUE     ANALYZED     1.00     31.00     30.00     1.00          1.00                                                       "DISH"."DISH_NR"="MEAL_DISH_FOOD"."DISH_NR"     
    q1     09/05/2005 23:27:29          SELECT STATEMENT                                   CHOOSE          0.00          77.00     77.00     2.00     716.00                                        77.00               
    q1     09/05/2005 23:27:29          NESTED LOOPS                                             1.00     0.00     1.00     77.00     2.00     716.00                                        77.00               
    q1     09/05/2005 23:27:29          NESTED LOOPS                                             2.00     1.00     1.00     73.00     2.00     662.00                                        73.00               
    q1     09/05/2005 23:27:29          NESTED LOOPS                                             3.00     2.00     1.00     71.00     2.00     128.00                                        71.00               
    q1     09/05/2005 23:27:29          NESTED LOOPS                                             4.00     3.00     1.00     68.00     1.00     48.00                                        68.00               
    q1     09/05/2005 23:27:29          VIEW               SYS     VW_NSO_1                         5.00     4.00     1.00     62.00     1.00     13.00                                                       
    q1     09/05/2005 23:27:29          SORT     UNIQUE                                        6.00     5.00     1.00          1.00     21.00                                                       
    q1     09/05/2005 23:27:29          COUNT     STOPKEY                                        7.00     6.00     1.00                                                                      ROWNUM<=5
    q1     09/05/2005 23:27:29          NESTED LOOPS                                             8.00     7.00     1.00     62.00     1.00     21.00                                        62.00               
    q1     09/05/2005 23:27:29          VIEW               ISHADMIN          5.00                    9.00     8.00     1.00     56.00     3.00     39.00                                                       
    q1     09/05/2005 23:27:29          SORT     ORDER BY                                        10.00     9.00     1.00     56.00     3.00     78.00                                        56.00               
    q1     09/05/2005 23:27:29          FILTER                                             11.00     10.00     1.00                                                                      COUNT("FILTER_SET"."MEAL_NR")=3
    q1     09/05/2005 23:27:29          SORT     GROUP BY                                        12.00     11.00     1.00     56.00     3.00     78.00                                        56.00               
    q1     09/05/2005 23:27:29          VIEW               ISHADMIN          7.00                    13.00     12.00     1.00     48.00     3.00     78.00                                                       
    q1     09/05/2005 23:27:29          UNION-ALL                                             14.00     13.00     1.00                                                                      
    q1     09/05/2005 23:27:29          SORT     GROUP BY                                        15.00     14.00     1.00     16.00     1.00     18.00                                        16.00               
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     8.00          ANALYZED          16.00     15.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q1     09/05/2005 23:27:29          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     17.00     16.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q1     09/05/2005 23:27:29          SORT     GROUP BY                                        18.00     14.00     2.00     16.00     1.00     18.00                                        16.00               
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     9.00          ANALYZED          19.00     18.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q1     09/05/2005 23:27:29          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     20.00     19.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q1     09/05/2005 23:27:29          SORT     GROUP BY                                        21.00     14.00     3.00     16.00     1.00     18.00                                        16.00               
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     10.00          ANALYZED          22.00     21.00     1.00     12.00     1.00     18.00                                        12.00               "MEAL"."MEAL_TYPE_CODE"='LU' AND "MEAL"."DIETARY_RESTRICTION_NR"=4 AND "MEAL"."IS_CUSTOM"='N' AND "MEAL"."IS_DELETED"='N' AND "MEAL"."PREPARATION_TYPE_CODE"='H'
    q1     09/05/2005 23:27:29          INDEX     RANGE SCAN          ISHADMIN     MEAL_QX18          NON-UNIQUE     ANALYZED     1.00     23.00     22.00     1.00     3.00     15.00                                             3.00          "MEAL"."BY_PERSON_NR"=0     
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     11.00          ANALYZED          24.00     8.00     2.00     2.00     1.00     8.00                                        2.00               "MEAL"."BY_PERSON_NR"=0
    q1     09/05/2005 23:27:29          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     25.00     24.00     1.00     1.00     9,832.00                                             1.00          "MEAL"."MEAL_NR"="WEIGHTED_SET"."MEAL_NR"     
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL     1.00          ANALYZED          26.00     4.00     2.00     2.00     1.00     35.00                                        2.00               
    q1     09/05/2005 23:27:29          INDEX     UNIQUE SCAN          ISHADMIN     MEAL_PK          UNIQUE     ANALYZED     1.00     27.00     26.00     1.00     1.00     1.00                                             1.00          "MEAL"."MEAL_NR"="VW_NSO_1"."$nso_col_1"     
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     MEAL_DISH_FOOD     2.00          ANALYZED          28.00     3.00     2.00     3.00     2.00     32.00                                        3.00               
    q1     09/05/2005 23:27:29          INDEX     RANGE SCAN          ISHADMIN     MEAL_DISH_FOOD_QX124          NON-UNIQUE     ANALYZED     1.00     29.00     28.00     1.00     2.00     4.00                                             2.00          "MEAL"."MEAL_NR"="MEAL_DISH_FOOD"."MEAL_NR"     
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     DISH     4.00          ANALYZED          30.00     2.00     2.00     1.00     1.00     267.00                                        1.00               
    q1     09/05/2005 23:27:29          INDEX     UNIQUE SCAN          ISHADMIN     DISH_PK          UNIQUE     ANALYZED     1.00     31.00     30.00     1.00          1.00                                                       "DISH"."DISH_NR"="MEAL_DISH_FOOD"."DISH_NR"     
    q1     09/05/2005 23:27:29          TABLE ACCESS     BY INDEX ROWID          ISHADMIN     FOOD     3.00          ANALYZED          32.00     1.00     2.00     2.00     1.00     27.00                                 

  • Outlook access address book slow when sending from Word

    We use Outlook 2013 in cached mode together with Exchange 2013 CU5.
    If somebody send an email from outlook and click on the "TO"-button to select a recipient, the address book appears without delay.
    If i do the same, but send the email from word with "send as attachment" and click then on the "TO"-button, it takes sometimes till 5 minutes till the address book appears.
    The exact same problem happens also for the users which use Outlook 2010.

    Hi,
    I'm not able to reproduce this problem on my side, please try the following:
    1. Switch Outlook to work in Online Mode: Go to Account Settings -> Account Settings -> Double click the account name -> Uncheck "Use Cached Exchange Mode", click Next and Finish, restart Outlook and check if the problem exists when sending from
    Outlook in Online Mode.
    2. Have Word work in Safe Mode: Press Win + R, type "winword.exe /safe" in the blank box, press Enter. Try to send the attachment from Word, check if the problem persists. If no, consider to disable the suspicious add-ins to determine which one caused the
    problem.
    I'm looking forward to your reply.
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • IMac runs slow when copying through network port

    Ive been noticing an issue with my new iMac where everything I copy through my network to another computer everything starts running slow.  What gives?  How can I correct?

    10.2.0.3? Why? This is software that has been in desupport mode for 2+ years. If nothing else at least patch to 10.2.0.5.
    That said please run this query on each node when it is slow and post the results. You will need to adjust the snap_id to your current AWR snapshot range.
    SELECT dhs.begin_interval_time, b1.instance_number, b2.value RECEIVED,
           b1.value "RECEIVE TIME", ((b1.value/b2.value)*10) "AVG RECEIVE TIME (ms)"
    FROM sys.wrh$_sysstat b1, sys.wrh$_sysstat b2, dba_hist_snapshot dhs
    WHERE b1.stat_id = '1388758753'
    AND b2.stat_id = '326482564'
    AND b1.instance_number = 10
    AND b1.instance_number = b2.instance_number
    AND b1.snap_id >= 23000
    AND b1.snap_id = b2.snap_id
    AND b1.snap_id = dhs.snap_id
    ORDER BY b1.snap_id;
    SELECT dhs.begin_interval_time, b1.instance_number, b2.value RECEIVED,
           b1.value "RECEIVE TIME", ((b1.value/b2.value)*10) "AVG RECEIVE TIME (ms)"
    FROM sys.wrh$_sysstat b1, sys.wrh$_sysstat b2, dba_hist_snapshot dhs
    WHERE b1.stat_id = '1759426133'
    AND b2.stat_id = '2877738702'
    AND b1.instance_number = 10
    AND b1.instance_number = b2.instance_number
    AND b1.snap_id >= 23000
    AND b1.snap_id = b2.snap_id
    AND b1.snap_id = dhs.snap_id
    ORDER BY b1.snap_id;also run these:
    SELECT inst_id , event , total_waits, time_waited
    FROM gv$system_event
    WHERE event IN ('gc buffer busy acquire', 'gc buffer busy release')
    ORDER BY time_waited DESC;
    SELECT inst_id, current_master, previous_master, COUNT(*)
    FROM gv$gcspfmaster_info
    WHERE current_master <> previous_master
    GROUP BY inst_id, current_master, previous_master
    ORDER BY 1,2,3;

  • Portable Hard Drive Permissions when bound to network Domain

    Hi,
    I'm having some problems with a number of machines running OS X 10.4.3. The machines are standard client installs, bound to our corporate domain and authenticating to an Active Directory service, using OSX's directory access facilities.
    When the machines are bound to the domain, plugging in and mounting an external drive (Maxtor One Touch II or similar - have tested several manufacturers) via USB2 or Firewire gives only read-only access. The 'Get Info' for the drive shows its owned by a user '99percent' - an account I've never heard of! The only way to restore full read and write access is to open the Get Info, and toggle on-and-off 'Ignore Ownership on this Volume'.
    I've tried logging in as a local administrator, and as many options and properties as I can think of, but the only thing that seems to sort this is un-binding it from the domain.
    Has anyone seen this before, or know a possible work-around. Worst case, is there any scripting I could apply to detect the mounting of a volume and correct the permissions?
    Thanks in advance.
    Martyn.

    There's a couple of ways
    Devices like the Seagate Goflex Satellite are made to stream to an iPad. Reviews have been mixed and apparently you can only read FROM the drive, not copy back to it, but the drive has it's own wifi transmitter and sets up your own private wifi streaming hotspot.
    There are devices like the iFlash I believe it's called. a 16 or 32 gig drive that I believe can be used to transfer movies.
    what I've done takes a bit of techincal know how but works. I have the camera connection kit and I purchased some larger SD cards. I have the ability to make my own digital video files. I then put those on the SD card, follow the naming convention that the CCK demands (having a DCIM folder on the top level, having the movies have an 8 character name). I can then import those files into my iPad via the CCK, watch the video files then delete them off the device.
    The Seagate is probably good for someone with less of a technical bent. my way could be good  for someone with the techincal knowhow to take the time to come up with a good work around.
    There are other streaming services like Netflix and the such, but they do depend on you having good and fast internet access. Which isn't always possible.

  • Connecting with company is getting slower and slower.

    Hi. we are experiencing a problem with our sdk program. We have about 15 machines connected with 6 different users using our sdk program. The first day everyone logs on in 10 seconds, but as the day passes they start getting slower when connecting to the company. Maybe about 2 or 3 days later we will need to reboot the server so they can start working again. A note on the side, this only affects our sdk development. SapBusinessOne.exe can successfully connecdt to the company at the 3rd day when the progam cant. Iam not calling the disconect company when the program exists, I thought the .net crl would take care of that.. dont know if this could be the problem?
    We are using SapBusiness 2007 patch 48
    Thank you.
    Jose.

    Sorry its in DI, this is the code i use to connect to the company and where it takes alot of time to call.
    the Company object I pass is simply a _oCompany = new Company(). the server is in the form of "10.0.0.14"
    How to I release ComObjects? with dispose?
    Thanks
    public static string Connect(Company _oCompany, string _sServer, string _sCompanyDB, string _sDBUser, string _sDBPassword, string _sUser, string _sPassword) {
                oCompany.DbServerType = BoDataServerTypes.dstMSSQL2005;
                _oCompany.CompanyDB = _sCompanyDB;
                _oCompany.Server = _sServer;
                _oCompany.DbUserName = _sDBUser;
                _oCompany.DbPassword = _sDBPassword;
                _oCompany.UserName = _sUser;
                _oCompany.Password = _sPassword;
                if (_oCompany.Connect() != 0) {
                    return GetLastError(_oCompany);
                else {
                    return "";

  • Access connection​s 5.50 and EAP TLS with Computer certificat​e

    Hello,
    I'm trying to connect to a Wifi using Computer certificate to authenticate and it works perfectly fine with windows Wireless Zero Config however with Thinkvantage Access Connection I always get an authentication error.
    I'm using a R61 with a ThinkPad 802.11a/b/g/n, 802.11b/g/n Wireless LAN Mini PCI Express Adapter. It's been updated to the latest driver (v7.6.1.260b)
    OS is windows XP with SP3 and all the windows update (as of today).
    On my Radius server this is what I get:
    If I use WZC I get this in the authentication:
    Security ID: DOMAIN\R61WXP$ (this is my computer name)
    Account name: host/R61WXP.domain.local
    Account Domain: DOMAIN
    FQDN: DOMAIN\R61WXP$
    When I use Access Connections:
    Security ID: DOMAIN\Guest
     Account name: 
    Account Domain: DOMAIN
    FQDN: DOMAIN\Guest
    My Access connection profile is set this way:
    IEEE802.1x => Authenticate as Computer when the information is available.
    I hope someone can help !
    Thanks!

    Hi,
    try to dissable the IEEE802.1x => Authenticate as Computer when the information is available.
    Make also sure, that the profile connection is correctly configured in the AC profile settings.
    This mighe the the root cause.
    I can tell you, that there must be something missconfigured, as this configuration will surelly work .
    Cheers

  • I cannot access my face time.When i do that I get a message that I cannot sign in and to check my internet connection. how can i fixed that?

    i cannot access my face time.When i do that I get a message that I cannot sign in and to check my internet connection. how can i fixed that?

    What version of iTunes are you using?  The latest is 10.6.3. In iTunes, choose Help -> About iTunes to check the version number. If it's lower than 10.6.3, download the latest version from here.
    B-rock

  • Can't get a wireless connection on a T43 when using Access Connection​s

    This week I had to set up a laptop for one of the partners of our firm.  Since I can no longer use System Update to get all the lenovo apps I had to download everything from the website.  Everything seemed to be going fine until I noticed that the wireless card wasn't connecting through Access connections.   It only works through Windows connection utility I have the latest version of Access Connections and the correct driver for the wireless card but it just won't work.  I remember that when system update was up and running I could download a seperate driver from lenovo that would make the wireless card work with Access Connections.  Unfortunately, I can't find it on the website.  Can anyone help me?

    Hello eaglesfan20, welcome to Lenovo forums!
    Please tell us your system type, OS and used AC version.
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • Why yahoo/gmail retrieval and facebook app so so slow when in WIFI. But using the internet to check for emails and facebook is fast using the same WIFI connection??

    Why yahoo/gmail retrieval and facebook app so so slow when in WIFI. But using the internet to check for emails and facebook is fast using the same WIFI connection??

    Hi SandyS_VZW,
    Yes tried resetting the wifi connection and problem still persist.
    Here it is...to make it clear. Connected thru the same wifi at home...
    -> emails (yahoo/gmail) and facebook WEBSITES are working fine and fast when using/accessing thru a browser (chrome/samsung browser) - no problem with this.
    -> emails (yahoo/gmail) and facebook APP is soooooo sloooww (thru the App). Slow I mean comparing it to using their browser/websites... news feeds/emails refreshing so quickly but not when using the APP installed in Samsung Galaxy Note 4. Slow like - It will take around 5-10minutes just to get your emails and news feed refreshed.
    THIS HAPPENS ONLY WHEN CONNECTED THRU A WIFI which has a speed of 10-20mb. It is not happening when connected to the network data/plan.
    My wife has the same Samsung Galaxy Note 4 (coming from different provider at&t) - same setup (emails, fb app), same wifi connection, but she's not experiencing anything like it.
    Not sure why, I dont want to believe that while connected to a WIFI, Verizon is restricting anything and ******* me off to make me switch to my data plan connection everytime - which is Unfair!
    Was there a known issue similar about this case?
    thanks,

Maybe you are looking for