Low performance (please help)

Hi!
My DB objects are:create or replace TYPE T_G5RPP AS VARRAY(1000) OF NUMBER(2);
CREATE TABLE "ROGADM"."ROG_TEMP_G5LKL" (
    "ID"     VARCHAR2(100 BYTE),
    "STATUS" NUMBER(2,0) DEFAULT 1,
    "G5IDL"  VARCHAR2(200 BYTE),
    "G5TLOK" NUMBER(1,0),
    "G5PEW"  NUMBER,
    "G5PPP"  NUMBER,
    "G5LIZ"  NUMBER(32,0),
    "G5LPP"  NUMBER(6,0),
    "G5RPP"  "ROGADM"."T_G5RPP",
    "G5WRT"  NUMBER(32,0),
    "G5DWR"  DATE,
    "G5DTW"  DATE,
    "G5DTU"  DATE,
    "ID_G5ADR_RADR" VARCHAR2(100 BYTE),
    "ID_G5JDR_RJDR" VARCHAR2(100 BYTE),
    "ID_G5BUD_RBUD" VARCHAR2(100 BYTE),
    "IDR"           VARCHAR2(100 BYTE),
    "PLS_ID"        NUMBER
CREATE INDEX "T_G5LKL_ADR_FK" ON "ROG_TEMP_G5LKL" (PLS_ID, "ID_G5ADR_RADR");
CREATE INDEX "T_G5LKL_BUD_FK" ON "ROG_TEMP_G5LKL" (PLS_ID, "ID_G5BUD_RBUD");
CREATE INDEX "T_G5LKL_JDR_FK" ON "ROG_TEMP_G5LKL" (PLS_ID, "ID_G5JDR_RJDR");
create unique index T_G5LKL_PK on ROG_TEMP_G5LKL(PLS_ID, ID);
function get_obr_ark_dzi(p_obk_typ varchar2, p_obk_id varchar2, p_co varchar2, p_pls_id number)
  return varchar2 deterministic
AS
  v_obk_typ varchar2(10);
  v_obk_id  G5ADR.ID%type;
  v_out   varchar2(400);
  v_sep   varchar2(2) := '';
  v_old   varchar2(10) := '';
  v_pls_id    number;
begin
  if p_obk_typ not in ('G5DZE','G5BUD','G5LKL','G5OBR','G5KLU','G5UDZ','G5UDW','G5JDR', 'G5ADR') then
    return null;
  end if;
  v_obk_typ := p_obk_typ;
  v_obk_id  := p_obk_id;
  v_pls_id  := p_pls_id;
  if v_obk_typ = 'G5ADR' then
    -- sprawdzenie, adresem czego jest ten adres
    -- (odczytane będą dane dla adresów działek, budynków lub lokali, które są podpięte do tylko 1 obiektu)
    declare
      v_id  G5LKL.ID%type;
      v_co  varchar2(3);  -- ...jest adresem tego
    begin
      /** START **/
      begin
        v_co := 'LKL';
        execute immediate 'SELECT ID FROM ROG_TEMP_G5LKL WHERE ID_G5ADR_RADR = :obk AND pls_id = :pls'
           into v_id
          using v_obk_id, v_pls_id;
      exception when no_data_found then
        v_co := null;
      end;
      /** END **/
      if v_co is not null then
        v_obk_typ := 'G5'||v_co;
        v_obk_id  := v_id;
      else
        return null;
      end if;
    end;
  end if;
  if v_obk_typ = 'G5LKL' then
    execute immediate
'   SELECT case when :p_co=''obreb'' then    SUBSTR(G5IDL,10,4)
                when :p_co=''arkusz'' then   SUBSTR(G5IDL,18,INSTR(G5IDL,''.'',-1,3)-18)
                when :p_co=''dzialka'' then  SUBSTR(G5IDL,
         instr(G5IDL,''.'',1,2 + case when SUBSTR(G5IDL,15, 3)=''AR_'' then 1 else 0 end) + 1,
         instr(G5IDL,''.'',-1,2)-1 - instr(G5IDL,''.'',1,2 + case when SUBSTR(G5IDL,15, 3)=''AR_'' then 1 else 0 end))
           end
      FROM ROG_TEMP_G5LKL
     WHERE ID = :p_obk_id AND pls_id = :pls' into v_out using p_co,p_co,p_co, v_obk_id, v_pls_id;
  else
    return null;
  end if;
  return v_out;
exception
  when no_data_found then
    return null;
end get_obr_ark_dzi;I have a query:SELECT log_pls_id,log_obk_id,
       log_obk_typ
       ,rog_pck_utl.get_obr_ark_dzi(log_obk_typ, log_obk_id, 'obreb', log_pls_id) AS log_obk_obreb
  FROM (SELECT distinct log_obk_id, log_obk_typ, log_pls_id
          FROM rog_log_ksat_zdarzenia
          JOIN rog_log on logkz_log_id = log_id
         WHERE logkz_f_obsluzony <> 'T')
   where log_obk_typ = 'G5ADR' and log_pls_id = 635 and rownum <= 200; which runs 7.2 seconds. When I comment the block bounded by /** START **/ and /** END **/ the query runs only 0.043 seconds.
Here is part of trace file:SELECT log_pls_id,log_obk_id,
       log_obk_typ
       ,rog_pck_utl.get_obr_ark_dzi(log_obk_typ, log_obk_id, 'obreb', log_pls_id) AS log_obk_obreb
  FROM (SELECT distinct log_obk_id, log_obk_typ, log_pls_id
          FROM rog_log_ksat_zdarzenia
          JOIN rog_log on logkz_log_id = log_id
         WHERE logkz_f_obsluzony <> 'T')
   where log_obk_typ = 'G5ADR' and log_pls_id = 635 and rownum <= 200
call     count       cpu    elapsed       disk      query    current        rows
Parse        1      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch        1      0.06       0.10          0       2480          0         200
total        3      0.06       0.11          0       2480          0         200
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 379  (ROGADM)
Rows     Execution Plan
      0  SELECT STATEMENT   MODE: ALL_ROWS
      0   COUNT (STOPKEY)
      0    VIEW
      0     SORT (UNIQUE NOSORT)
      0      TABLE ACCESS   MODE: ANALYZED (BY INDEX ROWID) OF
                 'ROG_LOG_KSAT_ZDARZENIA' (TABLE)
      0       NESTED LOOPS
      0        TABLE ACCESS   MODE: ANALYZED (BY INDEX ROWID) OF
                   'ROG_LOG' (TABLE)
      0         INDEX   MODE: ANALYZED (RANGE SCAN) OF 'LOG_I'
                    (INDEX (UNIQUE))
      0        INDEX   MODE: ANALYZED (RANGE SCAN) OF
                   'LOGKZ_LOG_FK_I' (INDEX)
SELECT ID
FROM
ROG_TEMP_G5LKL WHERE ID_G5ADR_RADR = :obk AND pls_id = :pls
call     count       cpu    elapsed       disk      query    current        rows
Parse       42      0.00       0.00          0          0          0           0
Execute     98      0.00       0.00          0          0          0           0
Fetch       98      7.82       7.58          0    4519564          0           0
total      238      7.82       7.58          0    4519564          0           0
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 379  (ROGADM)   (recursive depth: 1)
Rows     Row Source Operation
      0  TABLE ACCESS BY INDEX ROWID ROG_TEMP_G5LKL (cr=138354 pr=0 pw=0 time=231295 us)
205593   INDEX RANGE SCAN T_G5LKL_PK (cr=576 pr=0 pw=0 time=411229 us)(object id 433034)
Rows     Execution Plan
      0  SELECT STATEMENT   MODE: ALL_ROWS
      0   TABLE ACCESS   MODE: ANALYZED (BY INDEX ROWID) OF
              'ROG_TEMP_G5LKL' (TABLE)
205593    INDEX   MODE: ANALYZED (RANGE SCAN) OF 'T_G5LKL_ADR_FK' (INDEX)
(...)What do you think is the reason of such big value in 'query' column of 'Fetch'?
Explain plan executed from SQL Developer is different:explain plan for
SELECT ID
  FROM ROG_TEMP_G5LKL
WHERE ID_G5ADR_RADR = :adr
   AND pls_id = 630;
PLAN_TABLE_OUTPUT
Plan hash value: 3052821629
| Id  | Operation                   | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT            |                |     1 |   117 |     3   (0)| 00:00:01 |
|*  1 |  TABLE ACCESS BY INDEX ROWID| ROG_TEMP_G5LKL |     1 |   117 |     3   (0)| 00:00:01 |
|*  2 |   INDEX RANGE SCAN          | T_G5LKL_PK     |     1 |       |     2   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   1 - filter(ID_G5ADR_RADR=:ADR)
   2 - access(PLS_ID=630)Please help...

Yes, this index can be unique:SELECT count(*)
  FROM ROG_TEMP_G5LKL
GROUP BY pls_id, ID_G5ADR_RADR
HAVING count(*) > 1;
no rows selectedUnfortunately statistics are not up to date. I can't gather it, because DBA must fix some DB blocks first.
Edited by: JackK on Aug 5, 2011 7:20 AM
I've found something! When I add a condition to WHERE clause:SELECT log_pls_id,log_obk_id,
       log_obk_typ
       ,rog_pck_utl.get_obr_ark_dzi(log_obk_typ, log_obk_id, 'obreb', log_pls_id) AS log_obk_obreb
       ,rog_pck_utl.get_obr_ark_dzi(log_obk_typ, log_obk_id, 'arkusz', log_pls_id) AS log_obk_AR
       ,rog_pck_utl.get_obr_ark_dzi(log_obk_typ, log_obk_id, 'dzialka', log_pls_id) AS log_obk_dze
  FROM (SELECT distinct log_obk_id, log_obk_typ, log_pls_id
          FROM rog_log_ksat_zdarzenia
          JOIN rog_log on logkz_log_id = log_id
         WHERE logkz_f_obsluzony <> 'T')
   where log_obk_typ = 'G5ADR' and log_pls_id = 635 and rownum <= 200
     and exists (select 1 from g5lkl where id_g5adr_radr = log_obk_id);   -- added conditionthe statement runs in about 1 second. Without the condition it takes 22.4 seconds to complete. I think that's because in the latter case the querySELECT ID FROM G5LKL ... did not find any row.
Edited by: JackK on Aug 8, 2011 6:16 AM
I changed the index T_G5LKL_ADR_FK to:CREATE INDEX T_G5LKL_ADR_FK_ID ON ROG_TEMP_G5LKL (PLS_ID, ID_G5ADR_RADR, ID);and it runs fast enought - *200 rows in 1-2 seconds*. Now the plan shows only INDEX RANGE SCAN.

Similar Messages

  • Query Performance Please Help

    Hi can any body tell me how do I improve the performance of this query.This query takes forever to execute.
    PLEASE HELP
    select substr(d.name,1,14) "dist",
    sum(r.room_net_sq_foot) "nsf",
    sum(r.student_station_count) "sta",
    sum(distinct(r.cofte)) "fte"
    from b_fish_report r,
    g_efis_organization d
    where substr(r.organization_code,-2,2) = substr(d.code,-2,2) and
    d.organization_type = 'CNTY' and
    r.room_satisfactory_flag = 'Y' and
    substr(d.code,-2,2) between '01' and '72'
    -- rownum < 50
    group by d.name, r.organization_code
    order by d.name
    It has nonunique Indexes on Organization code
    Thanks
    Asma.

    Asma,
    I tried your SQL on my tables T1 and T2. Indexes are on C1,C2,C3 and N1,N2,N3. The data in T1 and T2 are shown below with the explain plan (also called EP) listed. You really need to do an explain plan (free TOAD is easiest to do this in) and respond showing your EP results.
    By simply changing the optimizer mode to RULE I was able to get it to use indexes on both T1 and T2.
    T1 data
    C1     C2     C3     N1     N2
    001     Y     AAA     1     11
    002     Y     BBB     2     22
    003     Y     CCC     3     33
    111     N     DDD     4     44
    222     N     EEE     5     55
    333     Y     FFF     6     66
    070     Y     GGG     7     77
    071     N     HHH     8     88
    072     Y     III     9     99
    TEST     TEST     TEST     10     100
    T2 data
    C1     C2     C3     N1     N2
    001     CNTY     AAA     1     11
    002     CNTY     BBB     2     22
    003     CNTY     CCC     3     33
    111     XXX     DDD     4     44
    222     XXX     EEE     5     55
    333     CNTY     FFF     6     66
    070     CNTY     GGG     7     77
    071     XXX     HHH     8     88
    072     CNTY     III     9     99
    TEST     TEST     TEST     10     100
    This is the results when I run the SQL based on this data ...
    dist     nsf     sta     fte
    AAA     1     11     10
    BBB     2     22     20
    CCC     3     33     30
    FFF     6     66     60
    GGG     7     77     70
    III     9     99     90
    --[SQL 1] : with CHOOSE as the optimizer mode, which is normally the DEFAULT if no hint is specified
    select /*+ CHOOSE */
    substr(d.c3,1,14) "dist",
    sum(r.n1) "nsf",
    sum(r.n2) "sta",
    sum(distinct(r.n3)) "fte"
    from t1 r, t2 d
    where substr(r.c1,-2,2) = substr(d.c1,-2,2) and
    d.c2 = 'CNTY' and
    r.c2 = 'Y' and
    substr(d.c1,-2,2) between '01' and '72'
    group by d.c3, r.c1
    order by d.c3
    This is what the EP shows for your SQL (which will probably be the same for you once you do an EP on your actuall sql) ...
    SELECT STATEMENT Optimizer=CHOOSE (Cost=4 Card=1 Bytes=37)
    SORT (GROUP BY) (Cost=4 Card=1 Bytes=37)
    NESTED LOOPS (Cost=2 Card=1 Bytes=37)
    TABLE ACCESS (FULL) OF T1 (Cost=1 Card=1 Bytes=12)
    TABLE ACCESS (BY INDEX ROWID) OF T2 (Cost=1 Card=1 Bytes=25)
    INDEX (RANGE SCAN) OF I_NU_T2_C2 (NON-UNIQUE)
    Notice the FULL table scan of T1 which you don't want, and neither C1 index is getting used (I've explained why below).
    --[SQL 2] : only changed the hint to RULE ...
    select /*+ RULE */
    substr(d.c3,1,14) "dist",
    sum(r.n1) "nsf",
    sum(r.n2) "sta",
    sum(distinct(r.n3)) "fte"
    from t1 r, t2 d
    where substr(r.c1,-2,2) = substr(d.c1,-2,2) and
    d.c2 = 'CNTY' and
    r.c2 = 'Y' and
    substr(d.c1,-2,2) between '01' and '72'
    group by d.c3, r.c1
    order by d.c3
    SELECT STATEMENT Optimizer=HINT: RULE
    SORT (GROUP BY)
    NESTED LOOPS
    TABLE ACCESS (BY INDEX ROWID) OF T2
    INDEX (RANGE SCAN) OF I_NU_T2_C2 (NON-UNIQUE)
    TABLE ACCESS (BY INDEX ROWID) OF T1
    INDEX (RANGE SCAN) OF I_NU_T1_C2 (NON-UNIQUE)
    Though the C2 index is getting used (your r.c2 = 'Y' part in the where clause) the main problem your having here is the JOIN column (C1 in both tables) is not getting used. So the join you have ...
    where substr(r.c1,-2,2) = substr(d.c1,-2,2)
    isn't using an index and you want it too. There are 2 solutions to correct this..
    Solution #1
    The first is to make a function-based index for data. Since your doing SUBSTR on C1 that C1 index does not contain that partial information so it will not use it. Below is the syntax to make a function based index for this partial data ...
    CREATE INDEX I_NU_T1_C1_SUBSTR ON T1 (SUBSTR(C1,-2,2));
    CREATE INDEX I_NU_T2_C1_SUBSTR ON T2 (SUBSTR(C1,-2,2));
    or also this way if it's still not using the above indexes ...
    CREATE INDEX I_NU_T1_C1_SUBSTR ON T1 (SUBSTR(C1,-2,2),C1);
    CREATE INDEX I_NU_T2_C1_SUBSTR ON T2 (SUBSTR(C1,-2,2),C1);
    Solution #2
    The second solution is to make another column in both table and place this 2 digit information in it, and then index this new column. That way the join will look like ...
    where r.c_new_column = d.c_new_column
    and
    r.c_new_column between '01' and '72'
    also with this new column the BETWEEN clause at the end you will not need the substring as well. Also remember BETWEEN on character values is different than numbers.
    Final Notes
    I just tried creating the functional index and I can't get it to be used it for some reason (I might not have the right amount of data), but I really think that is your best option here. As long as it uses the functional index you won't have to change your code. You might want to try using INDEX() in the hint to get it to be used, but hopefully it will use it right away. Try all 4 types of optimizer modes (CHOOSE, RULE, ALL_ROWS, FIRST_ROWS) in your primary hints to see if it will use the new function-based index.
    You really do need to get explain plan going. Even if you make these functional indexes you won't know if its going to be using them until you look at the EP results. You can do EP manually (the SQL of how to produce the results is in OTN, though I find free TOAD is by far the easiest) and you will still need to have run the utlxplan.sql script. Oracle I do think has some GUI tools, maybe in OEM, that have explain plan built in as well.
    I hope this helps ya,
    Tyler D.

  • Aggregates Question (Performance) Please Help

    I have 2 Questions first one is
    <b><i>1. Its been mentioned in the Forum that we can anlyse in the workload Monitor (ST03N) i went through that and did not find any Data for anlysis rather its showing information for Load Analysis.</i></b>
    <i><b>2. Its been mentioned that we also check in RSDDSTAT table contents i checked this table but could not find data (How this table is Populated)</b></i>
    When i checked in
    <b>InfoCube Manage Screen --> Performance --> Check Statistics (Refresh Aggregate Statistics)</b>
    What are these for?
    Can we Analyse to create aggregates or not with out BW Statistics data and just checking ST03N and RSDDSTAT and RSDDAGGRDIR tables?Please Help Me
    I am using BI 7.Points will be assigned (Thanks)
    Message was edited by:
            SV S
    Message was edited by:
            SV S
    null

    Hi,
    For ST03N
    From Document
    BI Administration Cockpit and New BI Statistics Content in SAP NetWeaver 7.0
    As of SAP NetWeaver 7.0 BI, transaction ST03 is based on the Technical Content InfoProviders (unlike prior releases). Therefore, using transaction ST03 for BI Monitoring requires the Technical Content to be activated and to be populated periodically with statistics data.
    So, looks like you have to install the new statistics technical content.
    From thread /message/3461465#3461465 [original link is broken]
    Rajani Saralaya K   
    IN BI 7.0, ST03n is based on BI Statistics cubes, so unless you install these cubes and schedule the dataflow you cant see any result in there. Even the same thing is mentioned in the note 934848.
    For information about RSDDSTAT,
    see /message/3627627#3627627 [original link is broken]
    Raj.

  • White screen appeared twice now when Curve 8520 battery is low? (Please Help)

    I'm really worried that my Blackberry is going to die ... I've only had it just over a year & I'm still paying for it, so for it to die on me would be truly upsetting!!
    I've had the white screen twice now while my battery is low, I've seen a fix online about if you get the white screen & it won't come back on, but I don't know if that would be good for me to do, also can you please let me know before any fix if I will lose anything such as my BBM contacts for example!!!!!
    Here's my device info as requested :
    Your carrier: I'm not sure what this means but I'm on O2 in the UK (If this is what it means)
    Model info and OS version (Go to Settings, then Options, then about), showed me the following info :
    BlackBerry® 8520
    Smartphone (EDGE, Wi-Fi)
    v5.0.0.681 (Platform 5.2.0.67)
    Cryptographic Kernel v3.8.5.85
    Branding Version: 1.0.125.652H
    Micro Edition Configuration: CLDC-1.1
    Micro Edition Profile: MIDP-2.1
    Micro Edition JTWI Version: 1.0
    Micro Edition Media Version: 1.1
    Micro Edition PIM Version: 1.0
    Micro Edition File Version: 1.0
    Micro Edition Bluetooth Version: 1.1
    Micro Edition Location Version: 1.0.1
    Micro Edition Security and Trust Services (APDU) Version: 1.0
    WLAN Version: 3.0.0.113
    www.blackberry.com
    Copyright © 1997-2010
    Research In Motion Limited
    Nuance VSuiteVersion: 3.2
    V 3.2.33 (b3.5)
    Device: BlackBerry 8520
    Apps and free space : I don;t have many app's really, Facebook, Twitter, I have the bejewelled & Sims 3, a horoscope one, wrestling online & Bebuzz .. I think that's it really, free space not sure but I know that it's ok though.
    I've done a battery pull each time the phone has done this ... & it's just re-booted the phone fine, but the fact the white screen issue has happened to me twice now in the past few days is worrying, it's always when the battery is low .... I've noticed the battery seems to charge up quite quickly too ... not sure whether that means anything.
    Please kindly help as soon as you possibly can ... I want to fix this early on the best way I can with hopefully not losing anything either ... such a gutter!! :-(
    THANK YOU TO WHOEVER KINDLY TAKES THE TIME OUT TO HElP ME HERE!!!

    We can do a few things just in case your phone situation gets worse.
    I highly recommend that you do a full backup of the data using the desktop manager.
    If you need to install it on your computer, get it from:
    http://us.blackberry.com/apps-software/desktop/desktop_pc.jsp
    After that, install blackberry protect if you haven't done so already.  make sure your online backup ran ok.
    http://us.blackberry.com/apps-software/protect/
    I then recommend that you reload your device software.  here are the steps.
    http://us.blackberry.com/support/installpc.jsp
    I hope this helps.
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Urgent - Oracle Applications Performance - Please Help me!

    Hi folks!
    I´m having a lot of performance troubles in Oracle applications, and the dba and the network analyst can´t help me. I´m having this trouble since 2 weeks, and nobody can explain why. The system is too slow and if i try a simple select in database it takes a lot of time, i think (i think ok?) there are som database troubles...
    I saw some docs
    1. System Mgmt White Paper http://www.oracle.com/appsnet/technology/managing/collateral/wp_managing11i.pdf
    2. System Mgmt PPT http://www.oracle.com/pls/oow/oow_user.download?p_event_id=15&p_file=P39948.zip
    3. Reducing 11i Downtime PPT http://www.oracle.com/pls/oow/oow_user.download?p_event_id=15&p_file=P39947.zip
    4. Performance and Scalability site : There are a couple of excellent presentations and white papers which will give you the right way to do performance tuning. http://www.oracle.com/appsnet/technology/performance/content.html
    but i need something more specifical like
    simple performance tests.
    Best Regards!
    Filipe
    [email protected]

    Hi
    Check this one.
    http://www.appsworld2004.com/scps/controller/catalog
    Search for item 1066. This is a presentation on "Performance Tuning Users Tips and Techniques" by Ahmed Alomari, Applications Performance Group, Oracle Corporation. You may need to register and then login.
    If you cant access this presentation, let me know, I can mail it to you as well.
    There was a similar presentation of 2002 Appsworld as well. Am not able to locate the link yet.
    Best Wishes
    Vinod Subramanian

  • Tag Performance -- Please Help!!!

    I am using jsp custom tags for internationalization. Syntax is <lib:message key=�key�>
    On one screen, the tag is used many times with various keys in order to get all the text. However, it causes serious performance problem because it seems like a new instance of the tag handler is created for each key. (I can see that by calling hashCode() method)
    For example:
    <lib:message key=�key1�>
    <lib:message key=�key2�>
    on the same page have different hashCode, which means they are two different instances. I am using Jrun 3.1, and I did include the release() method in the tag as follows:
    public void release(){
         key = null;
         super.release();
    Is there any way to use the tag instance pooling for this case?
    I will greatly appreciate your help.
    Jack

    you might want to change the server.xml if you are using tomcat.
    The TagPoolManagaer pools the tag library after their first use
    for further refrence use
    http://jakarta.apache.org/tomcat/tomcat-3.3-doc/serverxml.html#TagPoolManagerInterceptor
    Hope this helps
    Dutta:)

  • Slow mac and low battery,please help

    EtreCheck version: 2.1 (101)
    Report generated 4 December 2014 17:32:29 GMT
    Hardware Information: ℹ️
      MacBook Pro (17-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,3
      1 2.4 GHz Intel Core i7 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      AMD Radeon HD 6770M - VRAM: 1024 MB
      Color LCD 1920 x 1200
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: one day 2:9:59
    Disk Information: ℹ️
      TOSHIBA MK7559GSXF disk0 : (750.16 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 749.30 GB (354.20 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.option.driver.Option72 (2.15.0) [Support]
      [not loaded] com.option.driver.OptionHS (3.26.0) [Support]
      [not loaded] com.option.driver.OptionMSD (1.21.0) [Support]
      [not loaded] com.option.driver.OptionQC (1.11.0) [Support]
      [not loaded] com.paceap.kext.pacesupport.master (5.9.1 - SDK 10.6) [Support]
      /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns
      [not loaded] com.paceap.kext.pacesupport.leopard (5.9.1 - SDK 10.4) [Support]
      [not loaded] com.paceap.kext.pacesupport.panther (5.9.1 - SDK 10.-1) [Support]
      [not loaded] com.paceap.kext.pacesupport.snowleopard (5.9.1 - SDK 10.6) [Support]
      [not loaded] com.paceap.kext.pacesupport.tiger (5.9.1 - SDK 10.4) [Support]
    Startup Items: ℹ️
      DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
      Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.adobe.CS4ServiceManager.plist [Support]
      [loaded] com.adobe.CS5ServiceManager.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [invalid?] com.adobe.SwitchBoard.plist [Support]
      [loaded] com.adobe.versioncueCS4.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [invalid?] com.citrixonline.GoToMeeting.G2MUpdate.plist [Support]
      [loaded] com.facebook.videochat.[redacted].plist [Support]
      [running] com.spotify.webhelper.plist [Support]
    User Login Items: ℹ️
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox Application (/Applications/Dropbox.app)
      Vodafone Mobile Broadband Application (/Users/[redacted]/.Trash/Vodafone Mobile Broadband.app)
      VMCStatusMenu Application (/Users/[redacted]/.Trash/Vodafone Mobile Broadband.app/Contents/Resources/VMCStatusMenu.app)
    Internet Plug-ins: ℹ️
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 15.0.0.239 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      Flash Player: Version: 15.0.0.239 - SDK 10.6 [Support]
      Default Browser: Version: 537 - SDK 10.9
      SharePointBrowserPlugin: Version: 14.0.0 [Support]
      Silverlight: Version: 5.0.61118.0 - SDK 10.6 [Support]
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    userinternetplugins ℹ️
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Support]
      RealPlayer Plugin: Version: Unknown
    Safari Extensions: ℹ️
      Incognito
    Audio Plug-ins: ℹ️
      Avid CoreAudio: Version: 10.0 - SDK 10.6 [Support]
    3rd Party Preference Panes: ℹ️
      Adobe Version Cue CS4  [Support]
      Flash Player  [Support]
      Java  [Support]
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
        160% PluginProcess
          15% wineserver
          3% WindowServer
          2% Safari
          1% hidd
    Top Processes by Memory: ℹ️
      318 MB PluginProcess
      318 MB Safari
      258 MB Preview
      120 MB Finder
      93 MB com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
      64 MB Free RAM
      3.00 GB Active RAM
      2.94 GB Inactive RAM
      1.75 GB Wired RAM
      1.22 GB Page-ins
      29 MB Page-outs
    Diagnostics Information: ℹ️
      Dec 3, 2014, 03:23:10 PM Self test - passed

    Okay I worked on this today and since no response I guess it is not possible without setting up an entire network. I did hook up a hard drive to the USB port on the Airport and it is working without a hitch. I guess I can use this to move files back and forth when needed. Would have been better to have it how I did with the Netgear but I guess this is the next best.

  • QUREY PERFORMANCE, PLEASE HELP

    Hi, I have written a query which is you can see below. The query qpproximately takes 50- 60 SEC to run, which I believe is way too high. The total rows returned is 10,000 . Any idead/lead what to do to improve the query timings ? The number of rows in each table are as follows :
    ACCOUNTS : 1,580
    PERSONNEL : 1,616
    DIVISION : 15
    LABOR_COMMITTED : 23,000
    FISCAL_SYSTEM_PERIODS : 20
    FISCAL_YEARS : 20
    INDEXES :
    ACCOUNTS TABLE- 1. ACCOUNT_ID ( Primary Key), 2. IN_AC_COMBINED(ACCOUNT_ID , ACCOUNT_MANAGER)
    LABOR_COMMITTED TABLE- 1.LABOR_COMMIT_ID ( Primary Key) 2. IN_LC_COMBINED(PERSONNEL_ID, ACCOUNT_ID)
    PERSONNEL TABLE- 1. PERSONNEL_ID ( Primary key)
    The Actual Query :
    SELECT AC.ACCOUNT_NUMBER , AC.ACCOUNT_NAME , AC.ACCOUNT_END_DATE ,
    P1.NAME , D.DIVISION_NUMBER , P.SURNAME_ISI || ' '|| P.FIRST_NAME Person_Name,
    ISNULL(P.EMPLOYEE_ID,P.VISITOR_NUMBER) Employee_Number, CONVERT(DATETIME ,
    FSP.FISCAL_SYSTEM_PERIOD_CAL_YR_EQ || ' ' || FY.FISCAL_YEAR) Month_Year ,
    FSP.FISCAL_SYSTEM_PERIOD_CAL_YR_EQ || ' ' || FY.FISCAL_YEAR Month_Year1,
    ROUND(LC.LCS_EFFORT,2) LCS_Effort , 'ACTUAL' AS 'Labor Type' ,
    (SELECT CODE_VALUE FROM CODES CD WHERE CODE_ID = P.STAFF_CATEGORY_CODE_ID) STAFF_CAT
    FROM ACCOUNTS AC, PERSONNEL P1 ,DIVISIONS D, LABOR_COMMITED LC , PERSONNEL P , FISCAL_SYSTEM_PERIODS FSP , FISCAL_YEARS FY
    WHERE P1.PERSONNEL_ID IN (SELECT DISTINCT CHILD.PERSONNEL_ID FROM PERSONNEL CHILD, PERSONNEL PARENT WHERE PARENT.PERSONNEL_ID IN (7167,7041)
    AND CHILD.LFT BETWEEN PARENT.LFT AND PARENT.RGT AND PARENT.LFT <> 0 AND PARENT.RGT <> 0)
    AND AC.ACCOUNT_MANAGER = P1.PERSONNEL_ID AND P1.DIVISION_ID = D.DIVISION_ID AND AC.ACCOUNT_ID = LC.ACCOUNT_ID
    AND LC.PERSONNEL_ID = P.PERSONNEL_ID AND FSP.FISCAL_SYSTEM_PERIOD_ID = LC.FISCAL_PERIOD_ID AND FY.FISCAL_YEAR_ID = LC.FISCAL_YEAR_ID
    AND LC.COMMITED_DATE IS NOT NULL AND TO_DATE(FISCAL_SYSTEM_PERIOD_CAL_YR_EQ || ' ' || FISCAL_YEAR) <= TO_DATE(DATETIME,'01-Jan-2007')
    AND TO_DATE(FISCAL_SYSTEM_PERIOD_CAL_YR_EQ || ' ' || FISCAL_YEAR) >= CONVERT(DATETIME,'01-Feb-2006')

    <pre>
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | | | |
    | 1 | MERGE JOIN | | | | |
    | 2 | SORT JOIN | | | | |
    | 3 | NESTED LOOPS | | | | |
    | 4 | NESTED LOOPS | | | | |
    | 5 | NESTED LOOPS | | | | |
    | 6 | NESTED LOOPS | | | | |
    PLAN_TABLE_OUTPUT
    | 7 | NESTED LOOPS | | | | |
    | 8 | NESTED LOOPS | | | | |
    | 9 | TABLE ACCESS FULL | FISCAL_YEARS | | | |
    |* 10 | TABLE ACCESS BY INDEX ROWID| LABOR_COMMITED | | | |
    |* 11 | INDEX RANGE SCAN | IN_LC_PERIOD | | | |
    |* 12 | TABLE ACCESS BY INDEX ROWID | FISCAL_SYSTEM_PERIODS | | | |
    |* 13 | INDEX UNIQUE SCAN | FISCAL_SYS_PK | | | |
    | 14 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | | | |
    |* 15 | INDEX UNIQUE SCAN | PK_PERSONNEL_ID | | | |
    | 16 | TABLE ACCESS BY INDEX ROWID | ACCOUNTS | | | |
    |* 17 | INDEX UNIQUE SCAN | PK_ACCOUNT_ID | | | |
    PLAN_TABLE_OUTPUT
    | 18 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | | | |
    |* 19 | INDEX UNIQUE SCAN | PK_PERSONNEL_ID | | | |
    | 20 | TABLE ACCESS BY INDEX ROWID | DIVISIONS | | | |
    |* 21 | INDEX UNIQUE SCAN | DIVISION_ID_PK | | | |
    |* 22 | SORT JOIN | | | | |
    | 23 | VIEW | VW_NSO_1 | | | |
    | 24 | SORT UNIQUE | | | | |
    | 25 | CONCATENATION | | | | |
    | 26 | NESTED LOOPS | | | | |
    |* 27 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | | | |
    |* 28 | INDEX UNIQUE SCAN | PK_PERSONNEL_ID | | | |
    PLAN_TABLE_OUTPUT
    | 29 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | | | |
    |* 30 | INDEX RANGE SCAN | PERSONNEL_TREE | | | |
    | 31 | NESTED LOOPS | | | | |
    |* 32 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | | | |
    |* 33 | INDEX UNIQUE SCAN | PK_PERSONNEL_ID | | | |
    | 34 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | | | |
    |* 35 | INDEX RANGE SCAN | PERSONNEL_TREE | | | |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
    10 - filter("LC"."COMMITED_DATE" IS NOT NULL)
    11 - access("FY"."FISCAL_YEAR_ID"="LC"."FISCAL_YEAR_ID")
    12 - filter(TO_DATE('01-'||"FSP"."FISCAL_SYSTEM_PERIOD_CAL_YR_EQ"||'-'||"FY"."FISCAL_YEAR
    ")>=TO_DATE('01-Feb-2006') AND TO_DATE('01-'||"FSP"."FISCAL_SYSTEM_PERIOD_CAL
    _YR_EQ"||'-'||"FY"."FISCAL_YEAR")<=TO_DATE('01-Jan-2007'))
    13 - access("FSP"."FISCAL_SYSTEM_PERIOD_ID"="LC"."FISCAL_PERIOD_ID")
    15 - access("LC"."PERSONNEL_ID"="SYS_ALIAS_1"."PERSONNEL_ID")
    17 - access("AC"."ACCOUNT_ID"="LC"."ACCOUNT_ID")
    19 - access("AC"."ACCOUNT_MANAGER"="P1"."PERSONNEL_ID")
    21 - access("P1"."DIVISION_ID"="D"."DIVISION_ID")
    PLAN_TABLE_OUTPUT
    22 - access("P1"."PERSONNEL_ID"="VW_NSO_1"."$nso_col_1")
    filter("P1"."PERSONNEL_ID"="VW_NSO_1"."$nso_col_1")
    27 - filter("PARENT"."RGT"<>0 AND "PARENT"."LFT"<>0)
    28 - access("PARENT"."PERSONNEL_ID"=7041)
    30 - access("CHILD"."LFT">="PARENT"."LFT" AND "CHILD"."LFT"<="PARENT"."RGT")
    32 - filter("PARENT"."RGT"<>0 AND "PARENT"."LFT"<>0)
    33 - access("PARENT"."PERSONNEL_ID"=7167)
    35 - access("CHILD"."LFT">="PARENT"."LFT" AND "CHILD"."LFT"<="PARENT"."RGT")
    </pre>

  • Line in recorde mostly noise and very low audio (please help)

    i think i may be giving my client a lot of money back...
    about 20 minutes into a video gig i realized that the line in audio i was getting on my camera was not working properly so i pulled the plug and jsut picked up from the camra mic, but i am left with about... 18 minutes of very very poor audio. are there any brave and generouse soundtrack pros who can tell me waht setting to apply to make this "listenable"
    you can download a 30 second snipit here: http://www.video-guy.com/forums/ami_out_ofluck.zip
    i have soundtrack, but rarely use it, so like i said. if anyone would be kind enough to hold my hand and tell me what buttons to push i would be very much in your debt.
    heck, i'll even do some free photoshop, or final cut work for you.
    thanks.

    First off, yes you're pretty much out of luck. I listened to your sample, and there's probably nothing you could do to make this sound good. With enough filtering, you could make it so the voice is marginally intelligible, but it's never going to sound like a good recording.
    Second, while this web forum is good for discussion about Soundtrack Pro's features and how to use them, I've found that Usenet has much more meaningful discussions on audio editing techniques in general. A couple newsgroups I read religiously are rec.arts.movies.production.sound and rec.audio.pro.

  • Please help!!! Poor performance Neo2...can't figure out why!!

    Hi people,
    I have worked on this issue for days!!  I cannot figure it out!  Here is the problem:
    I used to have a Soltek AND Asus A8V mobo (both via chipsets), and scored approx 12,890 in 3dmark03 and 5,100 in 3dmark05, respectively ON BOTH BOARDS!
    I have swapped out these boards with the msi neo 2 (latest revison) w/ bios 1.4.  I have the SAME other equipment as shown in my signature.
    I only get approx 9,800 in 3dmark03 and 3,889 in 3dmark 05.  Roughly a 2,000/1,000 point lower difference respectively.
    I cannot for the life of me figure out why. I have thought about this for days and searched this and many other forums to no avail.
    I have installed the latest nforce 6.14 driver and the forceware 67.02.  I have tried other drivers as well, using driver cleaner between installs.  Still no go.
    Bios is set at optimized default.  AGP fast writes disabled.  AGP Aperature size 256.  The 6800gt is oc'ed to 400/1100.  No oc on mobo.
    I also did a search and found a review of this board w/ a 3dmark03 bench using the same video card as mine that shows a mark of 15,500 @ resolution 640x480.  
    So I tried the same test @ resolution 640x480 and scored 2,000 less marks.
    I just don't understand this.  Can someone please help and try to shed some light on this for me.  I am SO perplexed about this!!

    Why are you not using the  Soltek or Asus A8V anymore?
    i have almost the same machine as you and i to am very disappointed with the performance of my setup.
    I have also tried other drivers and  installing differecnt OS's (win2k, winXPsp1, winXPsp2), which did not seem to help.  although drivers did make my benchmarks vary depending on dirver and OS.
    I was just about to buy either the soltek 939 pin board or the asus A8V, to see if i can solve my performane issues.
    the only other board that looks really good is the gigabyte GA-K8NSNXP-939, but this board also has an nforce3 chipset and i am begining to think that the nforce3 chipset sux.  
    The only other explanation for the lack of performance or perceived lack of performance is that we are running 64bit CPUs under a 32bit environment  and therefore using only half the power of these CPU's.  

  • I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

  • Lookup transformation - Performance Issue -Please help!

    Hi,
     I have a Source table with 5 million rows. I am pulling all the rows from the source table, then doing the lookup with 5 different tables one by one.
    I use Full cache as the lookup table size is very less only. I used 'Ignore Failure' option in lookup table as I need to do the left join. That means, even if there is NO match, those records also should be passed to the bottom.
     Now, the problem is it is taking a lot of time. To load 1,00,000 records, it is taking 1 hour. The how about 5 Million rows? 50 hours? Could you please help me to find out what is the  mistake i am doing here?

    Is the performance still very poor if you only add for example a row count transformation after your source?
    How many rows are there in the lookup tables? Are you only selecting the columns you need? Is the data type of the selected columns very large?
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

  • I've an iphone 4, its headset jack is not working properly, when i insert the earphone no sound is coming, but when i keep the earphone little out i can hear the sound but very low sound is coming out, I've never dropped my iphone please help...

    I've an iphone 4, its headset jack is not working properly, when i insert the earphone no sound is coming, but when i keep the earphone little out i can hear the sound but very low sound is coming out, I've never dropped my iphone please help...

    bunjamin wrote:
    There is now a new line in BBM that wasn't there before which covers the message that I am typing, so I can't actually see what I am typing.
    Hi bunjamin,
    just go to BlackBerry World, and update all your apps including BBM.
    bunjamin wrote:
    Every time I unlock my phone, my screen enlarges so I can't really see much on the hub/notification screen and it defaults to the hub which it didn't do before).
    you can turn off the magnifying glass :
    device settings >> accessibility >> magnify mode >> OFF
    you can deactivate the "reset to Hub view" :
    hub >> overflow (bottom right button) >> Settings >> Display and actions >> Return to Default View When Idle >> OFF
    bunjamin wrote:
    my ringtone is much softer than it was previously
    yes, BlackBerry has acknowledged this bug in this article from the public knowledge base:
    KB36755 After upgrading BlackBerry 10 OS to version 10.3.1 the volume for notifications is noticed to be significantly lower than in the previous version
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • HT1871 Hi. my iphone 4 is getting heated and battery is getting lower & lower. since last 4 days i am facing this problem. please help me

    Dear Team,
    Since last 4 days after i have replaced display of my iphone 4, my handset is getting heated & battery is getting discharged in no time. i mean in morning i am doing full charge & before noon its getting low.
    please help
    Ravi Vyas

    Will it get rectified and restored...if so after how long. What could be the reason for such outage kindly share,  as I am facing real problem because of this...

  • Please help me..?! My iphone 4 is low battery so i'm charging for 8 hours and i turn on it..But the iphone 4 can't turn on..!! Please help me..!!

    Please help me..?! My iphone 4 is low battery so i'm charging for 8 hours and i turn on it..But the iphone 4 can't turn on..!! Please help me..!!

    Try
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

Maybe you are looking for

  • Want to get user ID in oracle forms

    Hi All, I'm working with oracle 11g and E-BS R 12.1.2 . I created a custom form using oracle form builder and attached to E-BS. I want the user ID current logged in user. I used this command FND_PROFILE.VALUE('USER_ID') but it doesn't work. How can I

  • Detection problems in IE?

    I discovered last night that the Javascript Flash detection is no longer working in Internet Explorer on either of my computers. The script cannot recognize that I have Flash installed. I'm not sure exactly when it quit working, but I went back and l

  • SAP Query (InfoSet) - table %DTAB

    We have just upgraded to ERP2004 (from 4.6C) and, in addition to direct ABAP coding, I use the Query tool a lot. From the code generated by the query application generator, it appears that the output table is now %DTAB. I could be extremely usefull t

  • Getting RFC error After system Refresh

    HI Gurus, Recently our SRM  QA client was refreshed from Prod and all the RFC connections are pointing to R/3 Production client instead of R/3 QA Client. Because of this reason we are unable to replicate the Product ID's from R/3 to SRM. Also all the

  • Just beginning, may not have sufficient rights

    Yesterday I installed NetWeaver Developer Studio for the first time and it required that it be installed as a user with Local Administrator rights on the PC.  I used a special user to do this, but now my normal user cannot run the program.  My networ