Index gone bad ! Please help.

Hi
Well, this time I ran some tests in 10gR2 database.
I analysed whole schema using dbms_stats, so all tables and indexes are analysed now.
I ran 2 queries, want your views about their EXPLAIN plans. Table here in concern is MTC_BLNG_EXCEPTION_DTL_ODS.
First query finished in 243 s with FULL table scan when NO Index was there on table.
When I created a local prefixed index, it took around 2000 s with following plan. Please note at bottom step #24 its doing Index range scan, then in #3, its accessing table using Index rowid. Performance has degraded USING INDEX. I wonder WHY Oracle did not choose FULL scan ?
| Id  | Operation                           |  Name                           | Rows  | Bytes | Cost  | Pstart| Pstop |
|   0 | SELECT STATEMENT                    |                                 |     1 |   252 |   258 |       |       |
|   1 |  WINDOW BUFFER                      |                                 |     1 |   252 |   258 |       |       |
|   2 |   SORT GROUP BY                     |                                 |     1 |   252 |   258 |       |       |
|*  3 |    TABLE ACCESS BY LOCAL INDEX ROWID| MTC_BLNG_EXCEPTION_DTL_ODS      |     1 |    53 |   160 |    62 |    62 |
|   4 |     NESTED LOOPS                    |                                 |     1 |   252 |   242 |       |       |
|   5 |      MERGE JOIN CARTESIAN           |                                 |     1 |   199 |    82 |       |       |
|   6 |       MERGE JOIN CARTESIAN          |                                 |     1 |   179 |    62 |       |       |
|   7 |        MERGE JOIN CARTESIAN         |                                 |     1 |   167 |    41 |       |       |
|   8 |         VIEW                        | MTC EXCPN COMPANY V             |     1 |    18 |    21 |       |       |
|   9 |          SORT ORDER BY              |                                 |     1 |    91 |    21 |       |       |
|* 10 |           FILTER                    |                                 |       |       |       |       |       |
|* 11 |            TABLE ACCESS FULL        | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  12 |         BUFFER SORT                 |                                 |     1 |   149 |    41 |       |       |
|  13 |          VIEW                       | MTC EXCPN NUM V                 |     1 |   149 |    21 |       |       |
|  14 |           SORT ORDER BY             |                                 |     1 |    91 |    21 |       |       |
|* 15 |            TABLE ACCESS FULL        | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  16 |        BUFFER SORT                  |                                 |     1 |    12 |    41 |       |       |
|  17 |         VIEW                        | MTC EXCPN CATEGORY CD V         |     1 |    12 |    21 |       |       |
|  18 |          SORT ORDER BY              |                                 |     1 |    91 |    21 |       |       |
|* 19 |           TABLE ACCESS FULL         | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  20 |       BUFFER SORT                   |                                 |     1 |    20 |    61 |       |       |
|  21 |        VIEW                         | MTC EXCPN TYPE V                |     1 |    20 |    21 |       |       |
|  22 |         SORT ORDER BY               |                                 |     1 |    91 |    21 |       |       |
|* 23 |          TABLE ACCESS FULL          | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|* 24 |      INDEX RANGE SCAN               | BLNG_EXCPN_RPT_INS_TMST_LO_IDX  | 38019 |       |   145 |    62 |    62 |
-----------------------------------------------------------------------------------------------------------------------In second query, following plan is coming. FULL scan was BAD, same INDEX was created, and following plan came out.
NOTE that #31 is doing Index range scan and then IMMEDIATELY feeding to #30 for table access by rowid, thereby limiting rows to 1056 from 38019.
| Id  | Operation                              |  Name                           | Rows  | Bytes | Cost  | Pstart| Pstop |
|   0 | SELECT STATEMENT                       |                                 |     1 |   222 |   298 |       |       |
|   1 |  WINDOW SORT                           |                                 |     1 |   222 |   298 |       |       |
|   2 |   VIEW                                 |                                 |     1 |   222 |   298 |       |       |
|   3 |    WINDOW BUFFER                       |                                 |     1 |   266 |   298 |       |       |
|   4 |     SORT GROUP BY                      |                                 |     1 |   266 |   298 |       |       |
|*  5 |      HASH JOIN                         |                                 |     1 |   266 |   283 |       |       |
|   6 |       MERGE JOIN CARTESIAN             |                                 |    22 |  4488 |   103 |       |       |
|   7 |        MERGE JOIN CARTESIAN            |                                 |     1 |    70 |    82 |       |       |
|   8 |         MERGE JOIN CARTESIAN           |                                 |     1 |    50 |    62 |       |       |
|   9 |          MERGE JOIN CARTESIAN          |                                 |     1 |    38 |    41 |       |       |
|  10 |           VIEW                         | MTC EXCPN TYPE V                |     1 |    20 |    21 |       |       |
|  11 |            SORT ORDER BY               |                                 |     1 |    91 |    21 |       |       |
|* 12 |             TABLE ACCESS FULL          | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  13 |           BUFFER SORT                  |                                 |     1 |    18 |    41 |       |       |
|  14 |            VIEW                        | MTC EXCPN COMPANY V             |     1 |    18 |    21 |       |       |
|  15 |             SORT ORDER BY              |                                 |     1 |    91 |    21 |       |       |
|* 16 |              TABLE ACCESS FULL         | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  17 |          BUFFER SORT                   |                                 |     1 |    12 |    41 |       |       |
|  18 |           VIEW                         | MTC EXCPN CATEGORY CD V         |     1 |    12 |    21 |       |       |
|  19 |            SORT ORDER BY               |                                 |     1 |    91 |    21 |       |       |
|* 20 |             TABLE ACCESS FULL          | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  21 |         BUFFER SORT                    |                                 |     1 |    20 |    61 |       |       |
|  22 |          VIEW                          | MTC EXCPN NUM V                 |     1 |    20 |    21 |       |       |
|  23 |           SORT ORDER BY                |                                 |     1 |    91 |    21 |       |       |
|* 24 |            TABLE ACCESS FULL           | MTC_CD_LKUP                     |     1 |    91 |     5 |       |       |
|  25 |        BUFFER SORT                     |                                 |    22 |  2948 |    82 |       |       |
|  26 |         VIEW                           | MTC EXCPN CURRENT STATUS V      |    22 |  2948 |    21 |       |       |
|  27 |          SORT ORDER BY                 |                                 |    22 |  2002 |    21 |       |       |
|* 28 |           FILTER                       |                                 |       |       |       |       |       |
|* 29 |            TABLE ACCESS FULL           | MTC_CD_LKUP                     |    22 |  2002 |     5 |       |       |
|  30 |       TABLE ACCESS BY LOCAL INDEX ROWID| MTC_BLNG_EXCEPTION_DTL_ODS      |  1056 | 65472 |   179 |    62 |    62 |
|* 31 |        INDEX RANGE SCAN                | BLNG_EXCPN_CMP_INS_TMST_LO_IDX  | 38019 |       |   123 |    62 |    62 |
--------------------------------------------------------------------------------------------------------------------------I wonder, why Oracle didn't feed rowids immediately to table after doing Index range scan in First query, like it did in second query ??
Thanks.

. . . E t c . . .
First query finished in 243 s with FULL table scan when NO Index was there on table.
When I created a local prefixed index, it took around 2000 s with following plan. Please note at bottom step #24 its doing Index range scan, then in #3, its > accessing table using Index rowid. Performance has degraded USING INDEX. I wonder WHY Oracle did not choose FULL scan ?
. . . E t c . . .
If performance degraded, remove the local prefixed index.
Besides it seems not to be the same statement, the second query has an additional view: "MTC EXCPN CURRENT STATUS V "
:p

Similar Messages

  • Headset jack gone bad (PLEASE HELP!)

    The other day, I accidentally yanked out my headset from the headset jack of my iTouch really hard. Now, whenever I plug the headset into my iTouch, I can't hear any music whatsoever. The iTouch is still playing music; I can hear music only when I put pressure on the plug of the headset. However, even if I apply pressure, the sound 'crackles' up and I have to apply more pressure. There's nothing wrong with the headset because I've plugged it into my other iPod, and I can hear music from that iPod. I've even tried different headsets with this iPod and the same aforementioned problem occurs. What should I do? I'm really upset about this dilemma and I wonder if anything can be done to fix my iTouch.

    You can get the headphone jack replaced. If you are in warranty make a Genius Bar appointment and take it to your nearest Apple Store or send it in. If you are not try http://www.iresq.com or use Google for other 3rd party repair sites.

  • I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    You have 10.6 on that machine, I suggest you stick with it for performance, third party hardware and software reasons as long as possible.
    Consider 10.8 (not 10.7) when it's released, because 10.7 and 10.8 will require a new investment in software and newer third party hardware as it requires newer drivers the old machines won't have. (forced upgrade because of software, really nice of them)
    http://roaringapps.com/apps:table
    Far as your Safari problem do these things until it's resolved:
    1: Software Update fully under the Apple menu.
    2: Check the status of your plug-ins and update (works for all browsers) also install Firefox and see if your problems continue. You should always have at least two browsers on the machine just in case one fails.
    https://www.mozilla.org/en-US/plugincheck/
    Flash install instructions/problem resolution here if you need it.
    How to install Flash, fix problems
    3: Install Safari again from Apple's web site
    https://www.apple.com/safari/
    4: Run through this list of fixes, stopping with #16 and report back before doing #17
    Step by Step to fix your Mac

  • I downloaded iso5 on to 3gs when syncing it says that can't sync because contact app is open. I now have no contact icon on phone and all contacts have gone. Please help thanks

    I downloaded iso5 on to 3g when syncing it says that it can't sync contacts as contact app open. I have no contact app now on my phone and all contacts appear to have gone . Please help thanks

    Have now found my contacts icon but when i press it just goes straight back to home page ?

  • Few days back I installed Autocad 2014 in my macbook pro 15" early 2012.For few days it worked fine but since last two days I'm getting graphical lag in my mac. Finger gestures and dock movement all seems to be lagging badly.Please help.I'm using maverick

    Few days back I installed Autocad 2014 in my macbook pro 15" early 2012.For few days it worked fine but since last two days I'm getting graphical lag in my mac. Finger gestures and dock movement all seems to be lagging badly.Please help.I'm using mavericks

    We regularly use Cocktail by Maintain software. You run the whole gamut of options but the important one is in System - Databases - Rebuild launch services. Also in Files - Caches - then clear the lot.
    This is just houskeeping really but there are so many 'links' in A/cad it needs 'cleaning'

  • All of my music on iTunes is gone! Please help?

    I opened iTunes and another window came up telling me that I need to make a folder for my iTunes in order for it to keep working. I've made a folder, and now whenever I open iTunes, all of my music, podcasts, and everything else is gone. PLEASE HELP!

    Having a similar issue.  Everytime i restart itunes its like its the first time its run and wants to look for music.   Yes, please help!

  • I have updated to a new version of firefox and lost all of my 'history' i need it back.. I had so much info there and now its gone.. please help me

    a update version of firefox came up.. tellingme to update to new version of firefox. So I did.. it loaded the current version. I always have my 'history' showing. (in the VIEW title on top of screen I go to SIDEBAR, and have history showing. It is on the lest side of screen at all times. I have so many sites and all my research there.. when I updated in was gone.. I need it back.. PLEASE HELP ME... ANYBODY....

    I'm sorry you're having problems with FF 4! Please see the following thread for information on how to downgrade:
    [http://support.mozilla.com/bs/questions/797708 Thread 797708]
    Hope this helps!

  • My "New Tab" button is gone. Please Help me get it back

    After i messed with customizing my toolbars, i wanted to open a new tab and the "New Tab" button was gone! how can i get it back? I have the "Nightly and Aurora" persona on. Please help.

    How do I Customize or Rearrange Toolbar items?
    * https://support.mozilla.com/en-US/kb/how-do-i-customize-toolbars#w_how-do-i-customize-or-rearrange-toolbar-items
    Check and tell if its working.

  • 9 years of photos gone!  Please help!

    I have always uploaded ALL of my photos onto my work computer.... 9 years going on 10.  Our tech guy realized my machine was never being backed up.  The only connection I can make is they disappeared when he started backing up via Time Machine.  I have tried everything I've been suggested to do on the forums and nothing has worked.  It's as if everything dated before August 1, 2013 is gone forever.  All of my files in my entire computer are still there, only Iphoto was affected.  When I go into time machine to restore... the latest I can restore from is August 1, there are no backups before this date.  Can somebody PLEASE help me??

    Were the photos in an iPhoto Library?  If so what version of iPhoto and system are you running?  What do you see when you launch iPhoto to open your library?  What size is the library as determined by the Finder?
    There's a good chance that your image files are still in the library package but the library is damage and can't display them.  Your answers to these questions will tell us how to proceed.
    OT

  • All My Mail Gone! PLEASE HELP.

    I am on OS 10.3.9.
    First I obtained the v 2.4 Mail Application and replaced my
    v. 1.7. in the Applications folder.
    Then I went to launch the Mail Application and it does not launch. I suspect that Mail Version 2...and above require OSX 10.4.
    I tried to re install (put in Applications folder) v 1.1 and now get the message
    "You cannot open the application Mail because it may be damaged or incomplete".
    PLEASE HELP. Thank you.

    solman,
    Welcome to Apple Discussions.
    I will confirm your suspicions, Version 2.x of Mail was introduced with Tiger, and Version 1.x of Mail was included with all versions of OS X up to Panther.
    Based upon what you have described, I would advise that you consider using your Panther installation disks to perform an Archive and Install, followed by an update with Mac OS X Combined Update 10.3.9.
    Then allow software update to install any remaining updates.
    Hopefully you will be able to import your mail from the Previous System Folder.
    ;~)

  • FCP export settings ratio gone wild please help.

    Any edit i decide to export turns out like this:
    shaped in a black box.
    i understand that the 16:9 ratio has the letterbox, but why the left and right side lines?
    For picture example, see here:
    https://discussions.apple.com/message/15653584#15653584
    I cant change it, it's getting annoying, something has happened and I dont know how to change it back.
    I have tried changing the settings during the expor save config,
    i have tried easy setup settings,
    settings for FCP - but the exported video always comes out in a box now.
    i have tried them all, and set them to really weird things,
    i have messed it up and I dont know what to do......
    is there a way to change FCP settings back to default?
    Erase a FCP cache?
    I dont know, please help.

    AdamStansfield wrote:
    I didnt set anything up, i just edit using the same sequence settings and everything.
    Final Cut Pro rule number one: The Sequence settings must match the characteristics of your source footage.
    You can't just drop any old video into a particular setup and expect it to work.
    AdamStansfield wrote:
    i dont know what i am doing. sorry if i am coming across as an idiot.
    Not an idiot. A twerp, maybe.
    AdamStansfield wrote:
    i need to know how to change the 'pixel dimentions' and make everything back to normal.
    This is what we are trying to explain. It's complicated stuff, this video business.
    Once, I bought a camera. The salesman offered me a copy of some Windows editing software for free. I don't remember what it was called, but it said "Be your own director!" on the box in ComicSans font. I lost my temper and now sit in prison as a result, which is why I can't do FaceTime with you. Also, I am only allowed one phone call per month and my mother misses me.
    Yes. I am an FCP wizard.

  • HT1766 My backups are gone. Please help me

    I have backed up my ipod to my CPU many times before, but now, i cannot find them. please help me. i have erased all of the content off of my ipod so i could resore from backup, but NONE of my back ups are there.

    - Are you saying that when you go to iTunes>Preferences>Devices no backups are listed?
    - Search for Backup Files - A quick method is to run a search for the file extension "mddata" and/or "mdbackup".  The results are the backup files generated using iTunes.
    - iTunes places the backup files in the following places:
    Mac:~/Library/Application Support/MobileSync/Backup/
    Windows XP:\Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Note: To quickly access the Application Data folder, click Start, and choose Run. Type %appdata% and click OK.
    Windows Vista and Windows 7:\Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: To quickly access the AppData folder, click Start. In the search bar, type %appdata% and press theReturn key.

  • HT6541 How do I get my pictures back from the update? They were photos synced from my previous phone and now they are gone. Please help!

    i Just got an iPhone and I did not have icloud or iTunes yet. My photos from my previous phone were synced to my new phone and after the update they all disappeared. Please help me recover my pictures

    If all you did was sync your phone, and if you haven't synced again since this happened, you can restore your phone from the backup that was created at the beginning of the sync process (camera roll photos are included in the backup).  If you have synced again since this happened this backup has already been overwritten and your photos are lost.  Also, if you restored your phone from the backup of your iPod, rather than just synced, then your  photos are lost too.
    If you have an intact backup that contains these photos, do the following:
    Without connecting your phone, open iTunes on your computer and go to Preferences.  On the Devices tab check "Prevent...from syncing automatically".
    Connect your phone to your computer, right-click on the name of your phone when it appears in iTunes on the left sidebar and select Restore from Backup, choose your most recent backup to restore from.
    When complete, you can go back to iTunes>Preferences>Devices and re-enable automatic syncing.

  • My display has gone crazy, please help!!!

    Well folks, you can count me in as another victim of the "checkered/blocked" display problem. It suddenly came up just a few hours ago and I,m going crazy. Have been reading some of the posts and Apple should definitely look further on this issue since it's affecting a considerable number of users. I,m not clear if my system is covered under Apple's Extension Program. My S/N begins with W8526xxxxxxx, please help us Apple.

    Hi Chasnufa!
    Basically your screen looks like an old-fashioned TV test card with blocks all over it? That happened to my imac G5 when I had only had it a short while back in 2005. I had just switched to mac and was devastated. When I rang Apple they said it was the logic board which is the most expensive part to replace apparently. I had it fixed under Applecare. I would find out if you can get it fixed under the Apple program as now it is a known fault with these models.Here is a link to the page Apple have set up about the extended repair program, it does look like your model could be one of the affected ones:
    http://support.apple.com/kb/HT2390
    I hope this helps!

  • APPLICATIONS FOLDER HAS GONE BESERK - PLEASE HELP!

    For the past few weeks, most of my apps no longer are visible in the applications folder. 
    The apps work; finder shows them as residing in the apps folder. 
    If I go to the applications folder, though, all I see are the apps with names that begin with "A", plus the CALCULATOR app.
    Everything else [Quicktime, MS Office, etc.] does not appear.
    However, all the applications are working, and finder shows them as being located in the apps folder.
    Today, I found I cannot ADD new apps to my apps folder. 
    It will not accept new apps. 
    I am trying to install dashline 2.0 [a new app for me].
    When I drag the app to the apps folder, the time bar appears and runs through the move.
    However, the app never appears in the apps folder.
    When I search in finder, dashline does NOT show up as being in the app folder.
    If I try again, to drag the app to the apps folder, I get a prompt telling me the app is already in the apps folder.
    I googled these problems but all the answers I find have to do with setting up new computers, transferring from one computer to another, or 'losing' apps from the computer altogether.
    Here is the info on my computer.
    MacBook Pro
    17" late 2011
    Mac OSX 10.7.5
    1.4Ghz Intel Core i7
    16GB Memory
    not networked or shared
    Please help if you can.  I am hugely confounded on this one.

    Hello, Thomas, and thank you for this suggestion.  Here is my list:
    total 56
    drwxrwxr-x+ 108 root      admin   3672 Jun 10 09:15 .
    drwxrwxr-x   35 root      admin   1258 Jun  5 16:10 ..
    -rw-rw-r--    1 root      admin  21508 Jun 10 09:14 .DS_Store
    -rw-r--r--    1 root      wheel      0 Jun 13  2011 .localized
    drwxr-xr-x+   3 root      wheel    102 Oct  5  2012 Address Book.app
    drwxr-xr-x    7 root      admin    238 Jun  6 17:52 Adobe
    drwxrwxr-x@   7 root      admin    238 Feb  9 09:19 Adobe Acrobat X Pro
    drwxrwxr-x@   8 root      admin    272 Mar 28 12:02 Adobe Acrobat XI Pro
    drwxrwxr-x@  13 root      admin    442 Feb  5  2012 Adobe After Effects CS5
    drwxrwxr-x@  13 root      admin    442 Feb 22 17:46 Adobe After Effects CS5.5
    lrwxr-xr-x    1 root      admin     64 Jun  6 17:40 Adobe Application Manager -> /Applications/Utilities/Adobe Application Manager/core/PDapp.app
    drwxrwxr-x@   6 root      admin    204 Jul 23  2012 Adobe Audition CS5.5
    drwxrwxr-x@   9 root      admin    306 Jul 23  2012 Adobe Bridge CS5.1
    drwxrwxr-x@   8 root      admin    272 Jun  6 18:07 Adobe Bridge CS6
    drwxrwxr-x@  13 root      admin    442 Jul 23  2012 Adobe Contribute CS5.1
    drwxrwxr-x@   5 root      admin    170 Feb  4  2012 Adobe Device Central CS5
    drwxrwxr-x@   5 root      admin    170 Jul 23  2012 Adobe Device Central CS5.5
    drwxr-xr-x    3 501       admin    102 Mar 22  2012 Adobe Digital Editions.app
    drwxr-xr-x    3 giovanna  staff    102 Oct  9  2012 Adobe Download Assistant.app
    drwxrwxr-x@  12 root      admin    408 Jul 25  2012 Adobe Dreamweaver CS5.5
    drwxrwxr-x@  10 root      admin    340 Jun  6 17:59 Adobe Dreamweaver CS6
    drwxrwxr-x@   5 root      admin    170 Jul 23  2012 Adobe Encore CS5.1
    drwxrwxr-x@   8 root      admin    272 Feb  4  2012 Adobe Extension Manager CS5
    drwxrwxr-x@   8 root      admin    272 Jul 23  2012 Adobe Extension Manager CS5.5
    drwxrwxr-x@   6 root      admin    204 Jun  6 18:07 Adobe Extension Manager CS6
    drwxrwxr-x@  10 root      admin    340 Aug  4  2012 Adobe Fireworks CS5.1
    drwxrwxr-x@  21 root      admin    714 May 18 18:01 Adobe Flash Builder 4.5
    drwxrwxr-x@  14 root      admin    476 Mar 28 16:52 Adobe Flash CS5.5
    drwxrwxr-x@  20 root      admin    680 Jul 23  2012 Adobe Flash Catalyst CS5.5
    drwxrwxr-x@  12 root      admin    408 Jul 23  2012 Adobe Illustrator CS5.1
    drwxrwxr-x@  11 root      admin    374 Jun  6 18:07 Adobe Illustrator CS6
    drwxrwxr-x@  13 root      admin    442 Feb  5  2012 Adobe InDesign CS5
    drwxrwxr-x@  13 root      admin    442 Jul 23  2012 Adobe InDesign CS5.5
    drwxrwxr-x@  12 root      admin    408 Jun  6 17:53 Adobe InDesign CS6
    drwxrwxr-x@   5 root      admin    170 Jul 23  2012 Adobe Media Encoder CS5.5
    drwxrwxr-x@   5 root      admin    170 Jun  6 17:53 Adobe Media Encoder CS6
    drwxr-xr-x    3 root      wheel    102 Feb  4  2012 Adobe Media Player.app
    drwxrwxr-x@   6 root      admin    204 Feb  4  2012 Adobe OnLocation CS5
    drwxrwxr-x@   6 root      admin    204 Jul 23  2012 Adobe OnLocation CS5.1
    drwxrwxr-x@  16 root      admin    544 Sep 26  2012 Adobe Photoshop CS5.1
    drwxrwxr-x@  12 root      admin    408 Jun  6 17:58 Adobe Photoshop CS6
    drwxrwxr-x@   8 root      admin    272 Feb  5  2012 Adobe Premiere Pro CS5
    drwxrwxr-x@   8 root      admin    272 Jul 23  2012 Adobe Premiere Pro CS5.5
    drwxrwxr-x    3 root      admin    102 Feb  4  2012 Adobe Reader.app
    drwxrwxr-x@   5 root      admin    170 Feb  4  2012 Adobe Soundbooth CS5
    drwxr-xr-x    3 root      wheel    102 Jul 23  2012 Adobe Story.app
    drwxr-xr-x    3 giovanna  staff    102 Oct 24  2012 Amazon MP3 Downloader.app
    drwxrwxr-x    3 501       staff    102 Jun  4  2012 Android File Transfer.app
    drwxr-xr-x+   3 root      wheel    102 Oct  5  2012 App Store.app
    drwxr-xr-x    3 root      wheel    102 Oct  5  2012 Automator.app
    drwxr-xr-x    3 root      wheel    102 Oct  5  2012 Calculator.app

Maybe you are looking for

  • Yoga 2 Pro - Screen not rotating on new Windows 8.1 install

    I got my new Yoga 2 Pro last week and the screen rotation worked properly. I decided to wipe the partitions and install my own version of Windows 8.1. Since then the screen rotation doesn't work. The screen rotation button doesn't do anything and I d

  • J2sdk1.4.1 instalation in Solaris 2.6

    Hi, I've installed the "j2sdk-1_4_1-rc-solaris-i586.sh" (Solaris j2sdk1.4.1) and "J2SE_Solaris_2[3].6_x86_Recommended.tar.Z" (patch for solaris 2.6). And make the j2sdk1.4.1 de default java. When running java, the following message ocurrs: 18:03 eid@

  • Adding date picker to jsp

    Hi , Please help Is there a sample code available for including date picker control in jsp page and retrieving the selected values onto a text field. Regards,

  • Will WAAS be worth it?

    Hello, We have our headquarters in New York and a remote office in Chennai India. The circuit between the offices is a 10mbps MPLS with a big provider. The performance of web applications is fine. Users start to complain when it comes to Windows file

  • Export tables with lowercase names

    Has anyone ever done a table export on a table with a lower case name? I have set up a parameter file with the entry: tables=USER."table_name" but I get a: EXP-00011: USER."table_name" does not exist The table DOES exist, and if I ever find the perso