Tunning required

Hi
I have created more than 15 packages for a single application
i have used many procedures functions on no:of tables.
after running the project they have taking long longtime.
what is best way to tune the plsql query's
and please explain how to tune the query's with an example..
i am very thankfull ... in advance

Have you been gathering stats as you've been coding individual procedures/pakages or did you save it all for last? As others have said, you'll need A LOT more to get any help. Is it a process running slow? Is it one procedure running slow? Is it one query in a stored procedure? If your current stuff is slow, what is considered acceptable? And so on...
If you don't have any metrics at all, it might be helpful to write a package that dumps descriptions & timestamps to a table. Then you put calls to the package at the start/end of your procedures, and any other points you want to capture run-times for. Then you can calculate where most of your time is spent while processing, and tune where needed.

Similar Messages

  • TS3716 i cant sync with my i-tunes anymore...!!! it comes up i tunes requires a newer version of Apple mobile device support. can anyone help :(

    i cant sync with my i-tunes anymore...!!! it comes up i tunes requires a newer version of Apple mobile device support. can anyone help

    Hi Markynewman,
    If you're unable to sync with iTunes any more and the error states you need a newer version of Apple Mobile Device Support, I would check out this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    The first section has you troubleshoot your device, which is always a good idea but you might be able to skip since the error mentions Apple Mobile Device Support as the culprit.  The second section is for troubleshooting iTunes and Apple Mobile Device Support.
    Cheers,
    - Ari

  • Tunning Required! One more one for the Challengers!

    Hi all,
    This is one more to challenge!
    SELECT COUNT(1) FROM WHSE_LOC WHERE ((AREA_C,WKSTN_C) IN (SELECT AREA_C, WKSTN_C FROM WHSE_LOC WHERE AISLE_I = :B3 AND BIN_I = :B2 AND LVL_I = :B1 ) ) AND (AISLE_I,BIN_I,LVL_I) NOT IN (SELECT AISLE_I, BIN_I, LVL_I FROM WHSE_LOC WHERE AISLE_I = :B3 AND BIN_I = :B2 AND LVL_I = :B1 );
    I have the above query in one among the packages. My DBA reports that this query is the longest running in our database from : 7.22PM to 8.15PM IST.
    The record size currently is around 38500. This works when the records size is less than 5000 but when gone beyond that this fails. Can anybody help in this reg.?
    The following is the description of the table:
    desc whse_loc
    Name Null? Type
    AISLE_I NOT NULL NUMBER(3)
    BIN_I NOT NULL NUMBER(3)
    LVL_I NOT NULL NUMBER(2)
    AREA_C NOT NULL CHAR(4)
    WKSTN_C NOT NULL CHAR(4)
    STRG_ZONE_I NOT NULL NUMBER(2)
    SIZE_C NOT NULL CHAR(2)
    PULL_SEQ_I NOT NULL NUMBER(6)
    PUTAWAY_SEQ_I NOT NULL NUMBER(5)
    STRG_LOC_STAT_C NOT NULL CHAR(3)
    PALT_ID_CT_Q NOT NULL NUMBER(3)
    PULL_PALT_ID_CT_Q NOT NULL NUMBER(3)
    FLR_AIR_C NOT NULL CHAR(1)
    PALT_PULL_ALLOW_F NOT NULL CHAR(1)
    CTN_PULL_ALLOW_F NOT NULL CHAR(1)
    SSP_PULL_ALLOW_F NOT NULL CHAR(1)
    HOLD_STAT_C NOT NULL VARCHAR2(4)
    HOLD_REAS_T VARCHAR2(32)
    STRG_LOC_HOLD_TS DATE
    HOLD_USER_ID CHAR(7)
    MODF_USER_ID NOT NULL CHAR(7)
    MODF_PGM_N NOT NULL CHAR(8)
    MODF_TS NOT NULL DATE
    DPT_Q NUMBER(1)
    Pls. help me reg. optimizing the same!

    You are accessing the table three times, and you can reduce that to one:
    SQL> create table whse_loc (aisle_i, bin_i, lvl_i, area_c, wkstn_c)
      2  as
      3  select 1, 1, 1, 'A', 'A' from dual union all
      4  select 1, 1, 1, 'A', 'B' from dual union all
      5  select 1, 1, 2, 'A', 'A' from dual union all
      6  select 1, 1, 2, 'A', 'B' from dual union all
      7  select 1, 1, 2, 'A', 'C' from dual union all
      8  select 1, 1, 3, 'A', 'A' from dual union all
      9  select 1, 1, 3, 'A', 'B' from dual union all
    10  select 1, 1, 3, 'A', 'C' from dual union all
    11  select 1, 1, 3, 'A', 'D' from dual
    12  /
    Table created.
    SQL> var B1 number
    SQL> var B2 number
    SQL> var B3 number
    SQL> exec :B1 := 1; :B2 := 1; :B3 := 1
    PL/SQL procedure successfully completed.
    SQL> SELECT COUNT(1)
      2    FROM WHSE_LOC
      3   WHERE ( (AREA_C,WKSTN_C) IN
      4           ( SELECT AREA_C
      5                  , WKSTN_C
      6               FROM WHSE_LOC
      7              WHERE AISLE_I = :B3
      8                AND BIN_I = :B2
      9                AND LVL_I = :B1
    10           )
    11         )
    12     AND (AISLE_I,BIN_I,LVL_I) NOT IN
    13         (SELECT AISLE_I
    14               , BIN_I
    15               , LVL_I
    16            FROM WHSE_LOC
    17           WHERE AISLE_I = :B3
    18             AND BIN_I = :B2
    19             AND LVL_I = :B1
    20         )
    21  /
      COUNT(1)
             4
    1 row selected.That is your current query. The last predicate can be simplified like this:
    SQL> SELECT COUNT(1)
      2    FROM WHSE_LOC
      3   WHERE (AREA_C,WKSTN_C) IN
      4         ( SELECT AREA_C
      5                , WKSTN_C
      6             FROM WHSE_LOC
      7            WHERE AISLE_I = :B3
      8              AND BIN_I = :B2
      9              AND LVL_I = :B1
    10         )
    11     AND (  aisle_i != :B3
    12         OR bin_i != :B2
    13         OR lvl_i != :B1
    14         )
    15  /
      COUNT(1)
             4
    1 row selected.Note that the query below doesn't give the right result:
    SQL> SELECT COUNT(*)
      2  FROM  (SELECT DISTINCT AREA_C, WKSTN_C
      3         FROM   WHSE_LOC
      4         WHERE  AISLE_I = :B3 AND
      5                BIN_I   = :B2 AND
      6                LVL_I   = :B1)
      7  /
      COUNT(*)
             2
    1 row selected.By using an analytic function, the table scans are reduced to one:
    SQL> select sum(count_area_wkstn-1)
      2    from ( select whse_loc.*
      3                , count(*) over (partition by area_c, wkstn_c) count_area_wkstn
      4             from whse_loc
      5         )
      6   where aisle_i = :b3
      7     and bin_i = :b2
      8     and lvl_i = :b1
      9  /
    SUM(COUNT_AREA_WKSTN-1)
                          4
    1 row selected.Doing the same with other parameters:
    SQL> exec :B1 := 2; :B2 := 1; :B3 := 1
    PL/SQL procedure successfully completed.
    SQL> SELECT COUNT(1)
      2    FROM WHSE_LOC
      3   WHERE ( (AREA_C,WKSTN_C) IN
      4           ( SELECT AREA_C
      5                  , WKSTN_C
      6               FROM WHSE_LOC
      7              WHERE AISLE_I = :B3
      8                AND BIN_I = :B2
      9                AND LVL_I = :B1
    10           )
    11         )
    12     AND (AISLE_I,BIN_I,LVL_I) NOT IN
    13         (SELECT AISLE_I
    14               , BIN_I
    15               , LVL_I
    16            FROM WHSE_LOC
    17           WHERE AISLE_I = :B3
    18             AND BIN_I = :B2
    19             AND LVL_I = :B1
    20         )
    21  /
      COUNT(1)
             5
    1 row selected.
    SQL> SELECT COUNT(1)
      2    FROM WHSE_LOC
      3   WHERE (AREA_C,WKSTN_C) IN
      4         ( SELECT AREA_C
      5                , WKSTN_C
      6             FROM WHSE_LOC
      7            WHERE AISLE_I = :B3
      8              AND BIN_I = :B2
      9              AND LVL_I = :B1
    10         )
    11     AND (  aisle_i != :B3
    12         OR bin_i != :B2
    13         OR lvl_i != :B1
    14         )
    15  /
      COUNT(1)
             5
    1 row selected.
    SQL> select sum(count_area_wkstn-1)
      2    from ( select whse_loc.*
      3                , count(*) over (partition by area_c, wkstn_c) count_area_wkstn
      4             from whse_loc
      5         )
      6   where aisle_i = :b3
      7     and bin_i = :b2
      8     and lvl_i = :b1
      9  /
    SUM(COUNT_AREA_WKSTN-1)
                          5
    1 row selected.And yet another combination, with the explain plans so you can see the number of table scans.
    SQL> exec :B1 := 3; :B2 := 1; :B3 := 1
    PL/SQL procedure successfully completed.
    SQL> set autotrace on explain
    SQL> SELECT COUNT(1)
      2    FROM WHSE_LOC
      3   WHERE ( (AREA_C,WKSTN_C) IN
      4           ( SELECT AREA_C
      5                  , WKSTN_C
      6               FROM WHSE_LOC
      7              WHERE AISLE_I = :B3
      8                AND BIN_I = :B2
      9                AND LVL_I = :B1
    10           )
    11         )
    12     AND (AISLE_I,BIN_I,LVL_I) NOT IN
    13         (SELECT AISLE_I
    14               , BIN_I
    15               , LVL_I
    16            FROM WHSE_LOC
    17           WHERE AISLE_I = :B3
    18             AND BIN_I = :B2
    19             AND LVL_I = :B1
    20         )
    21  /
      COUNT(1)
             5
    1 row selected.
    Execution Plan
    Plan hash value: 2315582378
    | Id  | Operation            | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |          |     1 |    90 |    13   (8)| 00:00:01 |
    |   1 |  SORT AGGREGATE      |          |     1 |    90 |            |          |
    |*  2 |   FILTER             |          |       |       |            |          |
    |*  3 |    HASH JOIN SEMI    |          |     1 |    90 |     9  (12)| 00:00:01 |
    |   4 |     TABLE ACCESS FULL| WHSE_LOC |     9 |   405 |     4   (0)| 00:00:01 |
    |*  5 |     TABLE ACCESS FULL| WHSE_LOC |     1 |    45 |     4   (0)| 00:00:01 |
    |*  6 |    TABLE ACCESS FULL | WHSE_LOC |     1 |    39 |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter( NOT EXISTS (SELECT /*+ */ 0 FROM "WHSE_LOC" "WHSE_LOC"
                  WHERE "AISLE_I"=TO_NUMBER(:B3) AND "BIN_I"=TO_NUMBER(:B2) AND
                  "LVL_I"=TO_NUMBER(:B1) AND LNNVL("AISLE_I"<>:B1) AND LNNVL("BIN_I"<>:B2)
                  AND LNNVL("LVL_I"<>:B3)))
       3 - access("AREA_C"="AREA_C" AND "WKSTN_C"="WKSTN_C")
       5 - filter("AISLE_I"=TO_NUMBER(:B3) AND "BIN_I"=TO_NUMBER(:B2) AND
                  "LVL_I"=TO_NUMBER(:B1))
       6 - filter("AISLE_I"=TO_NUMBER(:B3) AND "BIN_I"=TO_NUMBER(:B2) AND
                  "LVL_I"=TO_NUMBER(:B1) AND LNNVL("AISLE_I"<>:B1) AND LNNVL("BIN_I"<>:B2)
                  AND LNNVL("LVL_I"<>:B3))
    Note
       - dynamic sampling used for this statement
    SQL> SELECT COUNT(1)
      2    FROM WHSE_LOC
      3   WHERE (AREA_C,WKSTN_C) IN
      4         ( SELECT AREA_C
      5                , WKSTN_C
      6             FROM WHSE_LOC
      7            WHERE AISLE_I = :B3
      8              AND BIN_I = :B2
      9              AND LVL_I = :B1
    10         )
    11     AND (  aisle_i != :B3
    12         OR bin_i != :B2
    13         OR lvl_i != :B1
    14         )
    15  /
      COUNT(1)
             5
    1 row selected.
    Execution Plan
    Plan hash value: 3820410662
    | Id  | Operation           | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |          |     1 |    90 |     9  (12)| 00:00:01 |
    |   1 |  SORT AGGREGATE     |          |     1 |    90 |            |          |
    |*  2 |   HASH JOIN SEMI    |          |     1 |    90 |     9  (12)| 00:00:01 |
    |*  3 |    TABLE ACCESS FULL| WHSE_LOC |     1 |    45 |     4   (0)| 00:00:01 |
    |*  4 |    TABLE ACCESS FULL| WHSE_LOC |     1 |    45 |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("AREA_C"="AREA_C" AND "WKSTN_C"="WKSTN_C")
       3 - filter("AISLE_I"<>TO_NUMBER(:B3) OR "BIN_I"<>TO_NUMBER(:B2) OR
                  "LVL_I"<>TO_NUMBER(:B1))
       4 - filter("AISLE_I"=TO_NUMBER(:B3) AND "BIN_I"=TO_NUMBER(:B2) AND
                  "LVL_I"=TO_NUMBER(:B1))
    Note
       - dynamic sampling used for this statement
    SQL> select sum(count_area_wkstn-1)
      2    from ( select whse_loc.*
      3                , count(*) over (partition by area_c, wkstn_c) count_area_wkstn
      4             from whse_loc
      5         )
      6   where aisle_i = :b3
      7     and bin_i = :b2
      8     and lvl_i = :b1
      9  /
    SUM(COUNT_AREA_WKSTN-1)
                          5
    1 row selected.
    Execution Plan
    Plan hash value: 1194892149
    | Id  | Operation            | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |          |     1 |    52 |     5  (20)| 00:00:01 |
    |   1 |  SORT AGGREGATE      |          |     1 |    52 |            |          |
    |*  2 |   VIEW               |          |     9 |   468 |     5  (20)| 00:00:01 |
    |   3 |    WINDOW SORT       |          |     9 |   405 |     5  (20)| 00:00:01 |
    |   4 |     TABLE ACCESS FULL| WHSE_LOC |     9 |   405 |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("AISLE_I"=TO_NUMBER(:B3) AND "BIN_I"=TO_NUMBER(:B2) AND
                  "LVL_I"=TO_NUMBER(:B1))
    Note
       - dynamic sampling used for this statementRegards,
    Rob.

  • HT1349 i have been asked to restore factory setting on my iphone 4S and reset my i tunes password and now my purchased apps are no longer available to me

    for reasons unknown my usual synch process wouldnt work and not only had i to restore factory settings but then i tunes required me to reset my password but i retained my apple id.  most items were restored when the phone was synchronised but my purchased apps were not.
    have tried calling apple support but very difficult to get through

    This indicates corrupt files.
    Restore as new.

  • Can't open I Tunes

    Hello ))) I just bought a secondhand Macbook air 2009 edition. I spent one day to update it and now seems that everything is ok and update.
    I also downloaded and installed the latest Itunes version. But when I try to open Itunes it doesn't and an alert message says: " I tunes requires Quick Time 7.5.5 version or later".
    So downloaded Quicktime.exe and launch this file, but doesn't start any installing but I can see only a strange Dos window.
    What can i do?
    thanks
    Lapo

    No one can help me?

  • Pinnacle USB Pro Stick Tuner and FIOS

    I have a pinnacle pro stick usb. It supports clearqam and when I scan, it only give me local hd channels as well as music channel. It doesn't pick up discovery hd etc.. What am i doing wrong here?
    I scanned analog/digital and digital clearqam.
    Any help much appreciated.

    Serpo wrote:
    So those TV tuners work either for 'Antenna based HD channels' or via a FIOS set top box. What a shame cable company forces you to get a box.
    Yes, those "Clear QAM" tuners can only record local HD channels.  But the cable company does not force you get their own box.
    With FiOS and other cable providers, you are permitted to buy your own TivoHD or Moxi CableCard DVR.  You can also buy or build a PC that supports CableCards.   When equipped with a $3.99/mo CableCard, all of these solutions allow you to tune and record all FiOS SD and HD channels.  They do cost more than your typical $100 "Clear QAM" tuner card that does not have the necessary technology to support encrypted channels.
    It costs about $800 to build a new computer with two CableCard tuners.  Each ATI CableCard tuner costs about $200 and special motherboard with CableCard support is required.  Each ATI CableCard tuner requires a separate $3.99/mo CableCard from Verizon.  PCs aren't able to support multiple tuners with a single card like TiVo and Moxi.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it.

  • I received notice about a new cover art requirement (1400x1400 pixels) but can't find a way to change my existing art. My podcast has been updating flawlessly for several years, so I'd hate to have to remove the feed and start over.

    I received notice about a new cover art requirement (1400x1400 pixels) but can't find a way to change my existing art. My podcast has been updating flawlessly for several years, so I'd hate to have to remove the feed and start over.

    Please note - this was not a personalized email - Apple is sending this out to ALL podcasts that are listed on iTunes.
    If you are hosting with Libsyn or most any other "Podcast" host you should be ok. 
    http://blog.libsyn.com/libsyn-servers-are-byte-range-enabled-and-100-compliant-w ith-i-tunes-requirements
    If you are on a self hosted site or worse yet using some file storage service like Dropbox - then you are going to have issues. 
    Again - this leter from Apple does not mean anything is wrong wth your show specifically - it is a generic letter going out to all podcasters.
    Rob W
    podCast411

  • Please re-install i-tunes

    When trying to log onto i-tunes i get this message!
    "Quick time version 6.5 is installed, i-tunes requires version 7.1.3 or later.
    Please re-instal i-tunes"
    I have downloaded both version 7.1.3 and the latest version of i-tunes but not progressing any further.
    Any ideas?
    JK

    "Quick time version 6.5 is installed, i-tunes requires version 7.1.3 or later.
    Please re-instal i-tunes"
    did this start happening out of the blue? (in other words, you had a perfectly functional itunes, and then suddenly it starts claiming that QT version 6.5 is installed?)
    if so, by any chance did you install a K-Lite or ACE Mega Codec Pack on that PC just before this started happening? if so, which version?

  • G4 400MHz OS 10.2 update to 10.2.8 won't work

    I have tried to update from the software updater and the website download. Both times it stops and says a problem was encountered, but it does not tell me what the problem is. My I tunes requires an OS of 10.2.8 or better. What can I do? Should I spend the $ on 10.3 or later? I worry that the model will not work well with it. Thanks for any insight you can offer. Hart

    hartfaber:
    Welcome to Apple Discussions.
    Some people have difficulty upgrading directly to 10.2.8 and need to do it in stages going first to Mac OS X 10.2.4 Update (Combo), then to Mac OS X 10.2.6 Update Combo and finally to Mac OS X Update Combo 10.2.8. Here is Mac OS X 10.2: Chart of available Mac OS software updates.
    cornelius

  • Oracle Aplication Takes long time to open Using SSGD

    hello everybody!
    We are accessing Web based oracle application through SSGD 4.2. User claming slow performance of application in compare to direct access over web.
    please let me know if any tunning required ?
    Details are as follows:-
    Application Server : Windows 2003 with Oracle10g and 9AS Forms
    Publishing Method: IE 6.0 has been published with URL of application in the argument.
    Thanks & Regards
    Saurabh Sharma

    hello everybody!
    We are accessing Web based oracle application through
    SSGD 4.2. User claming slow performance of
    application in compare to direct access over web.
    please let me know if any tunning required ?
    Details are as follows:-
    Application Server : Windows 2003 with Oracle10g
    and 9AS Forms
    Publishing Method: IE 6.0 has been published with
    URL of application in the argument.
    Thanks & Regards
    Saurabh SharmaI have also found following reason for slow speed of connection :--
    1. Jinitiator(loaded with IE browser) and Terminal service do not work well together.
    2. Every image which is tranfered over SSGD Behaves as a bitmap image . Which take time to load and the changes also transfer very slow.
    Can any body guide me on this ?
    Regards
    Saurabh Sharma

  • Playing iPod on home computer system

    I need some advice regarding playing iTunes-purchased songs over my home computer system. I've seen various products that permit one to load music files onto a hard drive component linked to the stereo and even link to TV screens to control song selection, etc. None that I can find will play any songs purchased from iTunes. My house is set up in a way that does not easily permit plugging my iPod directly into the stereo and Air Tunes requires me to be at my computer to control song selection, etc. I just want remote access to song files (my house is fully wired) but don't want to give up all the iTunes music I've purchased. What am I missing? Is there a solution? Thanks in advance.

    How to use your iPod to move your music to a new computer using iTunes7
    http://docs.info.apple.com/article.html?artnum=300173
    How to use your iPod to move your music to a new computer using iTunes6
    http://docs.info.apple.com/article.html?artnum=304304
    Copying from iPod to Computer threads...
    http://discussions.apple.com/thread.jspa?threadID=1300144
    http://discussions.apple.com/thread.jspa?messageID=797432&#797432
    http://discussions.apple.com/thread.jspa?threadID=809624&tstart=0
    Also these useful internet articles...
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/
    http://www.engadget.com/2004/11/02/how-to-get-music-off-your-ipod/
    http://playlistmag.com/help/2005/01/2waystreet/
    Cheers!
    Patrick

  • Error 1714. The older version of QuickTime cannot be removed. - Fix

    I ran into this problem when I was installing the latest version of i-Tunes. Because i-Tunes requires QuickTime I researched for hours. I couldn't un-install QuickTime, it wasn't showing up in a software list to uninstall. I used Regedit to remove all of the "QuickTime" entries in the registry. Restarted my computer, still no luck.
    One thing that I did I ran the Quickertime installer from a DOS prompt and added /le file.txt
    This creates a log file with all the error during the installation.
    This gave me the follow error in the file:
    === Logging started: 12/30/2006 17:29:18 ===
    Error 1714. The older version of QuickTime cannot be removed. Contact your technical support group. System Error 1610.
    === Logging stopped: 12/30/2006 17:29:31 ===
    Again this is what I to searched for the errors with on luck.
    I ran the Quicktime installer again, this time I used the /l* file2.txt. This logs everything during the installation.
    I searched this file for where the errors were and found this:
    RemoveExistingProducts: Application: {50D8FFDD-90CD-4859-841F-AA1961C7767A}, Command line: UPGRADINGPRODUCTCODE={F07B861C-72B9-40A4-8B1A-AAED4C06A7E8} REMOVE=ALL
    MSI (s) (88:78) [18:39:06:390]: Unexpected or missing value (name: 'PackageName', value: '') in key 'HKLM\Software\Classes\Installer\Products\DDFF8D05DC09958448F1AA91167C67A7\Sour ceList'
    Error 1714. The older version of QuickTime cannot be removed. Contact your technical support group. System Error 1610.
    MSI (s) (88:08) [18:39:07:734]: Product: QuickTime -- Error 1714. The older version of QuickTime cannot be removed. Contact your technical support group. System Error 1610.
    Then in the registry removed the entry 50D8FFDD-90CD-4859-841F-AA1961C7767A in the HKLM\Software\Classes\Installer\Products directory.
    !!!!Make a backup of your registry if you are unfamiliar with regedit.
      Windows XP  

    Thank you so much for this solution! I spent hours trying to figure it out myself and by following your steps I got it working! My numbers were different but I was able to figure out which one I needed to delete. Thank you once again!

  • Aperture installation with multiple hard drives

    Hey, I have two hard drives on my computer. I had planned to use one for music and other forms of entertainment and the other to store my photography. them problem i have is this. both aperture and i-tunes require mac os x. how can i get aperture or its library on the other hard drive? thanks

    The Library itself can be stored on any drive, as long as the drive if formatted HFS+.
    Ian

  • How to implement State of charge kalman filter algorithm in C code

    hi,
    I am going to implement kamlan filter algorithm in C code. Is anyone here did this before. Please share your ideas and tell me how i can implement this. Give me some ideas. It would be highly apreciate. thanks in advance
    here i attached the kalman filter algorithm file.
    regards,
    usman
    Attachments:
    1.docx ‏74 KB

    Hi,
    did you already have a look at some implementations of the Kalman filter ? For example, that one : 
    Kalman filter c code implementation. How to tune required variables?
    http://forums.udacity.com/questions/1021647/kalman-filter-c-code-implementation-how-to-tune-required...
    or that one :
    http://alumni.media.mit.edu/~wad/mas864/psrc/kalman.c.txt
    Hope it helps!
    Aurelie

  • Ipad locked,passcode unknown,need to restore

    IPAD is locked, wrong passcode entered too many times.  Need complete restore, connected to I Tunes, however I Tunes requires PassCode to continue.  Any ideas?

    Try and force your iPad into Recovery Mode:
    1. Turn off iPad
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to iPad
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected an iPad in recovery mode"
    8. Use iTune to restore iPad
    Note: You need to be patient and repeat the above many times to recover your iPad

Maybe you are looking for

  • Business Rules and BPM

    Anybody here knows the difference between Business Rules and BPM.. We can do pretty much everything with a Business Rules Engine as we would do with BPM , then in which scenario should we use BPM and in which scenario should we use Business Rules Eng

  • Does anyone have experience of the OWC Mercury Extreme SSD?

    Hi everyone I read Lloyd Chambers [interesting article|http://macperformanceguide.com/Reviews-SSD-OWC-Mercury_Extreme.html] about the Mercury Extreme. In particular he seems to have found very little performance degradation with heavy use. I guess th

  • Ordering a calendar in UK, not working, or is it me?

    Hello, I'm trying to order a calendar that I've designed in iPhoto. The order button is greyed out, so I can't press order. I have "one-click ordering" enabled, but do I also need a .mac account? Or is this service not available in the uk? Thanks D

  • I'm looking for "best practices" advice for a project setup (Premiere CS5.5, Windows 7 Pro)

    I have been tasked with updating an old Corporate video with new music, sounds, graphics and narration. The ONLY video-camera material I have is from a corporate DVD (NTSC) - the original source material is simply not available. .  I can rip the DVD

  • Prompts and physical Query Sequence

    Hi Hopefully someone will be able to answer my question. We have a answer with a filter and we have a prompt on the dashboard. The report only runs after the user has selected values from the prompt and clicked on the 'go' button. What I want to know