Help Me Explain

Cut a long story short, I recently sold my Power Mac G5 on eBay.
Buyer has contacted me requesting a refund based on the "fact" that this revision of Power Mac G5 has a 500 GB limit on storage capacity. He is basing these claims on this spec page on Apple's web site:
<http://support.apple.com/kb/SP96>
"Support for up to two internal Serial ATA drives; 500GB maximum system capacity"
I've tried to explain to the buyer that there is no storage limitation for SATA controllers, that the specs page was written when 250 GB drives were the maximum size available. So far I'm not getting through to him.
If there anyone out there with the same rev a original Power Mac G5 that is successfully running more than 500 GB of internal storage, please put your hand up and help me out.
Even if you don't have this computer, I would appreciate your input. Do you believe this is a real limitation or not?
Thanks in advance

Sounds like 'buyers' remorse and looking for an out, any out, to back out of the deal, rather than based on specs or logic or.... argument.
The only limitations for 2003 PowerMac G5s:
no support for native command queueing
or spread spectrum clocking - which came later.
They support SATA 1.0 specification and SATA only came out in spring '03.
A lot of people were even caught off guard by inclusion of SATA (not known for jumping on new technology).
ATA-5/6/7 specification for 48-bit LBA covers "large" drives, but there may be a problem with 2TB drives is all.
The G5 1.6/1.8/1.8DP show slower SATA bus bandwidth and don't take advantage of some drives, even though they still 'work.'
Read the Wiki Serial ATA specification
The 640GB WD Caviar (Black/Blue) are excellent in all models.
So are 1TB models and you can include the 1TB (Black/Blue/Green).
What are they planning to use anyway? 1.5TB Seagate Barracuda 7200.11s?
WD 2TB RE4 model?
10K VelociRaptor?

Similar Messages

  • Can Anyone help to explain why character \ is used in Route pattern.

    Can Anyone help to explain why character \ is used in Route pattern. also if you could explain *11\+1.289201XXXX ?

    Well, I think the proper characterization would be that the design is based on a loose interpretation of RegEx. For instance, the asterisk "*" is typically used as the directive for zero or more occurrences of the preceding character. In the UCM dial plan, the * is a valid digit and someone decided to avoid the nastiness of escaping asterisk every time it is needed. On a related point, in standard regex build the "?" is used for a 0 or 1 match. In UCM, the "?" is 0 or more (so, it is like the asterisk in that way).
    That said, I get your point. Someone says "hey, we need wild cards" and the likely place to start pulling examples is RegEx.
    HTH
    -Bill
    (b) http://ucguerrilla.com
    (t) @ucguerrilla
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Please someone could help in explain how calenders are related among icloud and my imac ?

    please someone could help in explaining how calenders are related among icloud and my imac in terms of backuping and recovery ?
    Thanks
    JBS

    Open GarageBand's preferences, and under Audio/MIDI set the Input popUp menu to the iMic. You can also set the Output popUp to the iMic if you have headphones plugged into it, otherwise set it to Built-In.
    Create a New Basic Track, and you're ready to record.
    --HangTime [Will Compute for Food] B-|>

  • Hi I bought this Friday a 10 GB storage plan, but I received an email than I need to pay it every months how I can cancel this contract Becouse I don't able to pay it every years somebody can help and explains it to me please thanks you

    Hi I bought this Friday a 10 GB storage plan, but I received an email than I need to pay it every year how I can cancel this contract Becouse I don't able to pay it every years somebody can help and explains it to me please thanks you

    From this page http://support.apple.com/kb/TS4009 :
    iOS 5
    From your home screen, tap Settings > iCloud.
    Tap your iCloud account at the top of the screen.
    Select your iCloud Storage plan.
    Tap Downgrade Options and follow the prompts.
    There are also instructions for Windows and Mac OS X on that page

  • Why does safari not save my passwords anymore? I have to keep signing into everything. Can anyone help or explain?

    Why does safari not save my passwords anymore? I have to keep signing into everything. Can anyone help or explain?

    Check here: Settings > Safari > Private Broswing > Be sure this is stiwtched OFF.
    And check at AutoFill.

  • HT4482 Just bought WPS Reader + and I've only gotten a "loading" window for last hour. can anyone help or explain?

    Just bought WPS Reader + and I've only gotten a "loading" window for last hour. Can anyone help or explain?

    First off, KONGRACHULATIONS!!! 
    Next, if you can't even drive to the library, David Pogue's excellent Missing Manual books are also available for either online (Safari service, unrelated to Apple's browser) or computer (PDF) viewing. Just be sure to get the right ones for your Mac's operating system (10.5 = Leopard, 10.6 = Snow Leopard, 10.7 = Lion, exact info available in the About this Mac item on the Apple menu).
    http://shop.oreilly.com/category/browse-subjects/apple-mac/mac-os-x.do

  • Need help to explain these codes!!! Urgently!!!

    Hi anyone who's here to help...I am doing my Final year project report now...i dunno how to explain these codes in word...can anyone tell me what it means? what are these codes for...? what does each paragraph indicate?
    thanks.
    sorry, maybe i only insert pieces of the codes and its vague...ok, in this source code...what i dun understand is....i have cut and paste the sections of codes which i dun understand as below..
    bcoz this codes are passed down from my seniors who had graduated...and my task is to explain these codes in the form of a report without me having any background on programming...i tried asking some frens...its either they dunno or forgotten...this is my last hope...thanks again...thanks..
    * new added code */
         Thread scroller;     //for looping purpose
         int loopcounter,count;
         // thread is to allow the program to be called every and then.
         public void init()
              /*new added code */
              loopcounter=0;[list]
    **like whats does "thread scroller" means? Looping purpose? what's looping then?
    **also, i've tried on changing the "Loopcounter = 0" to other numbers like 2 and 5...and when i run it on the appletviewer..my image simply runs out of my page...
    [list]
    *And this part...what does it mean?
    /*new added code*/                                      
                public void start() {                    
                if (scroller == null) {               
                scroller = new Thread(this);         
                scroller.start();                          
        } [list]
    for this section here, i really dunno what it says.. "public void start"--start what? scroller again? new Thread(this)?
    [list]
        public void stop() {    
            if (scroller != null) { 
                scroller.stop();   
                scroller = null; 
        } [list]
    I dunno about this section also.. stops wat??
    [list]
        public void run() {                                                           
              try {Thread.currentThread().sleep(100);}                
                catch (InterruptedException e){}
            for (count=0; count <= 400; ) {  
              try {Thread.currentThread().sleep(20);} 
                catch (InterruptedException e){}  
              rm.load();       
        } [list]
    wat is it runing here? try? catch? for? wat does it mean?????
    [list]
        public void destroy(){;}                  
        public void update(Graphics g){paint(g);}
    }[list]
    now this.. wat is it destroying?? updateing wat???
    [list]
    this is my whole program like...
    import java.awt.*;     /*Contains all of the classes for creating user
                   interfaces and for painting graphics and images.*/
    import java.applet.*;     /*Provides the classes necessary to create an applet and the
                   classes an applet uses to communicate with its applet context.*/
    /* Loadable is required for RealMedia so that it know that this code
    can load images and sounds and has the startUp() method
    /* HotSpotListener is required to let HotSpot call hotSpotEvent(HotSpot) when it
    has been clicked
    //runnable is for looping purpose ....to animate the text or images.
    public class LibraryTest extends Applet implements Loadable, HotSpotListener, Runnable
         // RealMedia will load and save images and sounds.
         // It will also give information on the loading process.     
         RealMedia rm;
         // Four buttons that can be clicked on.
         HotSpot hs1,hs2,hs3,hs4;
         // 1 will show image 0 and 1 will show image 1.
         int x =0;
    /* new added code */
         Thread scroller;     //for looping purpose
         int loopcounter,count;
         // thread is to allow the program to be called every and then.
         public void init()
              /*new added code */
              loopcounter=0;
              // We'll place the buttons ourselves.
              setLayout(null);
              setBackground(Color.white);
              // create the RealMedia object
              rm = new RealMedia(this);
              //Start adding all image files you will use
              // image0 called pic_black
              rm.add("pic_black.jpg","image0");
              rm.add("EG3165 Tutorial 1.jpg","image0_1");
              rm.add("Question.jpg","image0_2");
              rm.add("Solution.jpg","image0_3");
              rm.add("Exercise.jpg","image0_4");
              //rm.add("cute.gif","image0_5");
              rm.add("mac-win.gif","image0_6");
              rm.add("walking-floppy.gif","image0_7");
              rm.add("eg3165_t001ver03_00.gif","image1");
              rm.add("eg3165_t001ver03_01.gif","image2");
              rm.add("eg3165_t001ver03_02.gif","image3");
              rm.add("eg3165_t001ver03_03.gif","image4");
              rm.add("eg3165_t001ver03_04.gif","image5");
              rm.add("eg3165_t001ver03_05.gif","image6");
              rm.add("eg3165_t001ver03_06.gif","image7");
              rm.add("eg3165_t001ver03_07.gif","image8");
              rm.add("eg3165_t001ver03_08.gif","image9");
              // Start button with 4 images
              // 1 Default state, mouseOver and mouseClick state.
              rm.add("1st.gif");
              rm.add("1st.gif");
              rm.add("1st.gif");
              // 2 Other button
              rm.add("prev.gif");
              rm.add("prev.gif");
              rm.add("prev.gif");
              // 3
              rm.add("next.gif");
              rm.add("next.gif");
              rm.add("next.gif");
              // 4
              rm.add("last.gif");
              rm.add("last.gif");
              rm.add("last.gif");
              // load the images now
              rm.load();
         public void startUp()
              // button 1
              hs1 = new HotSpot(this);
              hs1.setImage(rm.get("1st.gif"),1);
              hs1.setImage(rm.get("1st.gif"),2);
              hs1.setImage(rm.get("1st.gif"),3);
              hs1.setBounds(200,515,40,38);
              // same for button 2
              hs2 = new HotSpot(this);
              hs2.setImage(rm.get("prev.gif"),1);
              hs2.setImage(rm.get("prev.gif"),2);
              hs2.setImage(rm.get("prev.gif"),3);
              hs2.setBounds(250,515,40,38);
              // same for button 3
              hs3 = new HotSpot(this);
              hs3.setImage(rm.get("next.gif"),1);
              hs3.setImage(rm.get("next.gif"),2);
              hs3.setImage(rm.get("next.gif"),3);
              hs3.setBounds(300,515,40,38);
              // same for button 4
              hs4 = new HotSpot(this);
              hs4.setImage(rm.get("last.gif"),1);
              hs4.setImage(rm.get("last.gif"),2);
              hs4.setImage(rm.get("last.gif"),3);
              hs4.setBounds(350,515,40,38);
              // Place them
              add(hs1);
              add(hs2);
              add(hs3);
              add(hs4);
              // Repaint makes sure they are immediately visible.
              hs1.repaint();
              hs2.repaint();
              hs3.repaint();
              hs4.repaint();
         // Here the images are drawn.
         public void paint(Graphics g)
              g.setColor(Color.white);
              // When it is still loading show a loading message.
              if (!rm.isLoaded())
                   g.drawString("loading file "+rm.getCurrent(),20,20);
                   g.drawString("of "+rm.getTotalFiles(),20,40);
                   g.drawString("Percent: "+rm.getPercent(),20,60);
                   g.fillRect(20,80,rm.getPercent(),20);
              // Otherwise draw image1 or 2
              else
                   if (x == 0)
                        //place images using x-coordinates, y-coordinates.
                        g.drawImage(rm.get("image0"),20,20,this);
                        g.drawImage(rm.get("image0_1"),80+loopcounter,100+loopcounter,this);
                        g.drawImage(rm.get("image0_2"),190+loopcounter,175+loopcounter,this);
                        g.drawImage(rm.get("image0_3"),240+loopcounter,220+loopcounter,this);
                        g.drawImage(rm.get("image0_4"),290+loopcounter,265+loopcounter,this);
                        //g.drawImage(rm.get("image0_5"),150+loopcounter,285+loopcounter,this);
                        g.drawImage(rm.get("image0_6"),400,370,200,100,this);
                        g.drawImage(rm.get("image0_7"),100,300,this);
                        loopcounter+=2;
                        if (loopcounter == 50)
                        loopcounter = 0;
         // if loopcounter+=2, coordinate=x+loopcounter, y+loopcounter.
         /* e.g. round 1, loopcounter=0, coordinate=1,3 */
         /* e.g. round 2, loopcounter=2, coordinate=3,5 */
         /* e.g. round 3, loopcounter=4, coordinate=7,9 */
                   else if (x == 1)
                        g.drawImage(rm.get("image1"),20,20,this);
                   else if (x == 2)
                        g.drawImage(rm.get("image2"),20,20,this);
                   else if (x == 3)
                        g.drawImage(rm.get("image3"),20,20,this);
                   else if (x == 4)
                        g.drawImage(rm.get("image4"),20,20,this);
                   else if (x == 5)
                        g.drawImage(rm.get("image5"),20,20,this);
                   else if (x == 6)
                        g.drawImage(rm.get("image6"),20,20,this);
                   else if (x == 7)
                        g.drawImage(rm.get("image7"),20,20,this);
                   else if (x == 8)
                        g.drawImage(rm.get("image8"),20,20,this);
                   else if (x == 9)
                        g.drawImage(rm.get("image9"),20,20,this);
         // This method is called when a button has been clicked.
         public void hotSpotEvent(HotSpot hs)
              // if it was button 1 show image1.
              if (hs == hs1)
                   x = 1;
              // else show image2
              else if (hs == hs2)
                   {x = x - 1;
                   if ( x <= 1 ) x = 1;
              else if (hs == hs3)
                   {x = x + 1;
                   if ( x >= 9 ) x = 9;
              else
                   x = 9;
              // and repaint to show them.
              repaint();
         // Necessary for RealMedia to load your images
         public Image loadImage(String file)
              return getImage(getCodeBase(),file);
         // Also required but not used this time.
         public AudioClip loadAudio(String file)
              return getAudioClip(getDocumentBase(),file);
    /*new added code*/
         public void start() {
                if (scroller == null) {
                scroller = new Thread(this);
                scroller.start();
        public void stop() {
            if (scroller != null) {
                scroller.stop();
                scroller = null;
        public void run() {
              try {Thread.currentThread().sleep(100);}
                catch (InterruptedException e){}
            for (count=0; count <= 400; ) {
              try {Thread.currentThread().sleep(20);}
                catch (InterruptedException e){}
              rm.load();
        public void destroy(){;}
        public void update(Graphics g){paint(g);}
    }

    Thread scroller;//for looping purpose
    **like whats does "thread scroller" means? Looping purpose? what's looping then?So, you don't know what a variable declaration is, and you don't know what looping is, and you're unable to find out other than by having somebody here tell you (your school has no library, no bookstore, and no access to google--only to the Java forums).
    Either your school is absolutely backwards and useless, or you're a stupid lazy git who deserves to fail the course. Either way, somebody here posting an answer for you is not going to help you.
    The following might.
    Sun's basic Java tutorial
    Sun's New To Java Center. Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    http://javaalmanac.com. A couple dozen code examples that supplement The Java Developers Almanac.
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's Thinking in Java (Available online.)
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java. This one has been getting a lot of very positive comments lately.

  • Printer needs output as an .ai (.pdf won't work): please help me explain

    Hello, any help would be greatly appreciated.
    I have this client who is a great client but for various reasons their print vendors for packaging are incredibly special. I've begged them to change vendors, but it's not going to happen. Their paper printing vendors are fine (great actually), and the packaging vendors I use with other clients are fine, I think it's just because they are using the absolute cheapest vendors.
    The situation is that I use InDesign to create packaging (boxes, plastic tubes, labels, the whole bit). It's much more efficient for me because for their specific stuff, I use master pages, character/paragraph styles, update linked graphics, etc. This sort of thing is possible in Illustrator via other tools, but I strongly feel InDesign is a much better solution. When I'm done, I export a CMYK PDF (sometimes spot, but either either way, it's a clean, tidy PDF). I'm pretty comfortable with my settings for this as I don't have trouble with any other vendor.
    The problem is that my client is getting emails like this: Is it possible for you to send me the true vector files in either .ai or .eps format? 
    I could take the PDF into Illustrator and outline the fonts, and give them one huge, extremely messy package of AI files (and I'm sure they're on Illustrator 8 or something), but the client will need changes after the proof, and there are a lot of files here, so I have to do this, and redo it, etc. Not to mention this client is WAY over budget.
    So, what I'm begging for help with: I've been trying to google for something that explains why a PDF is a better file than an AI file for this purpose and why they should be able to use PDF, but I'm coming up with very little. So far I have general Adobe and Wikipedia articles (which covers raster vs vector), but I haven't found any info from a third party that explains why printers should be using (or at least able to use) a PDF to generate plates (poly or otherwise).
    Any help would be greatly appreciated. Thanks much.

    I actually hadn't thought of that (actually, hardly ever think about .eps anymore). It's a good point though.
    In CS4 (don't remember previous versions), I can export these just as easily as a PDF, but then I still have to outline the fonts, zip up several files instead of just sending a PDF, etc. It's 10 minutes, if that; but this is happening consistently with their packaging vendors. I'd rather educate their vendors than do work-arounds for them. I'm not trying to be a jerk about it, but if they don't know a PDF can be just as "true" a vector as an AI/EPS, the problem isn't just outdated equipment, it's a lack of seriously basic pre-press knowledge.
    I was sure adobe (or someone) had a nice article on why a PDF was a better solution, but I'm having a hard time finding it. More than a work-around, I'm really looking for general information for them as to what a PDF is (versus AI/EPS). Then I can at least tell my client that their printer requires me to do extra work, and I'll just bill out for my time. It's a nominal fee, because these work-arounds aren't that elaborate, but sooner or later my client will do the math and realize that it's in their best interest to find a better printer. I know a lot of great printers right now that are hurting (although sadly, none of them do packaging), I'd much rather see work go to printers who make an effort to stay educated about their industry.

  • Help me explain the need for RAM? Please???

    Hi, I work on a G5 in my new job as a 'Mac operator' (I'm in pre-press). At first I thought this has to be one of the original G5's that had issues, because it is pretty slow for a G5. So I decided to check the profiler and see just what my little Mac is made of. I must say my jaw hit the floor and my two co-workers were probably thinking I had just had a stroke.
    Without further ado, the specs:
    CPU Type: PowerPC G5 (2.2)
    Number Of CPUs: 2
    CPU Speed: 1.8 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 512 MB
    Bus Speed: 900 MHz
    Now you see why I need help? I have to wait for Quark to draw palettes ALL the time. I'm usually running InDesign, Quark, Illustrator, Photoshop, Suitcase, Thunderbird, Acrobat (the real one), and connected to FTP. Switching apps takes forever. I told my supervisor that it needed more RAM and she said, 'we can burn some stuff off and give you more room if you want'. So that's what I'm dealing with here. Anyone explain it for someone like that??? PLEASE? I've now dubbed the G5 "Smalls" - as in, "You're killing me, Smalls!"
    Thanks so much for any help that leads to Smalls and I getting more RAM.
    12" PB 867, G4 Sawtooth D450, Indigo iBook   Mac OS X (10.4.3)  

    You don't have Universal Binaries yet. That hurts a lot. And the programs you use love memory, and Rosetta needs a GB too.
    Your Mac would run some of those programs faster than Windows box IF you were to use Boot Camp, install Windows XP, and the windows versions.
    There are some sites with benchmarks of programs and comparing MacBook Pro vs others.
    www.hardmac.com
    www.barefeats.com
    www.xlr8yourmac.com
    512MB of memory is minimum of what OS X requires. Most users found 1.5GB to be the 'sweet spot' for general purpose.
    CS2 gets along fine with its own 3.5GB, and best with 7-8GB of memory - as OS X uses memory cache first before needing to use scratch.
    You can show them how many swap files there are. just do a Finder Go To (command shift g)
    /private/var/vm/
    that would be one way. Monitor real and virtual in Top and Activity Monitor.
    Monitor disk usage.
    Ask for a 150GB Raptor!
    Quark is coming along with a new UB version. CS3 is still about 9 months plus away.
    You really really need a G5 Dual or Quad Core, with support for more drives and 8-16GB RAM.
    there is no reason NOT to max out the RAM in your system!

  • Need help understanding Explain Plan from 10046 trace

    Below is a query and Explain Plan from a 10046 trace shown with trcanlzr.sql.
    In the explain plan I don't understand what's happining at line ID 10 and 11. Specifically, is the result at line 11 rowids from lines 12 & 14? and then what? Are those rowids somehow used in line ID 10?
    SELECT cp.cred_process_id, cp.provider_id,
           brdg_credentialing.get_appl_specialist(cp.cred_process_id,'R') specialist_name,
           brdg_cred_report_pkg.provider_name(cp.cred_process_id) provider_name,
           ctc_apptype.description appl_type_desc,
           TRUNC (brdg_credentialing.get_appl_received_dt(cp.cred_process_id)) init_received_dt,
           brdg_code_util.code_descr(brdg_credentialing.get_appl_status_cd_ctc_id(cp.cred_process_id)) appl_status_desc,
           brdg_credentialing.get_appl_prac_specialties(cp.cred_process_id,'Y') primary_specialty,
           cwh.city practice_city,
           UPPER (cwh.state) practice_state,
           TRUNC (ch.event_dt) specialist_assign_dt,
           DECODE (ctc_apptype.code,'INITPPO', TRUNC (brdg_credentialing.get_appl_received_dt(cp.cred_process_id)),
                   'REAPP', TRUNC (brdg_credentialing.get_appl_received_dt(cp.cred_process_id)),
                   'SPECCRED', TRUNC (brdg_credentialing.get_appl_received_dt(cp.cred_process_id)),
                   'TRANS', TRUNC (brdg_credentialing.get_appl_received_dt(cp.cred_process_id)),
                   'RECPPO', p.next_recred_dt,
                   'RECAPP', p.next_recred_dt, NULL) sort_date,
                   p.next_recred_dt
      FROM brdg_cred_app_open_vw cp,
           brdg_cat_type_codes ctc_apptype,
           brdg_cred_work_history cwh,
           brdg_cred_history ch,
           brdg_providers p
    WHERE cp.type_cd_ctc_id = ctc_apptype.cat_type_code_id
       AND ctc_apptype.category_cd = 'CRED'
       AND ctc_apptype.type_cd = 'APPTYPE'
       AND cp.cred_process_id = cwh.cred_process_id (+)
       AND cwh.primary_practice_flag (+) = 'Y'
       AND cp.cred_process_id = ch.cred_process_id
       AND ch.cred_history_id = (SELECT MAX(cred_history_id)
                                   FROM brdg_cred_history
                                  WHERE cred_process_id = cp.cred_process_id
                                    AND event_cd_ctc_id = brdg_credentialing.get_event_ctc_id ('SEVENT','SPESTCHG'))
       AND cp.provider_id = p.provider_id (+)
       and brdg_credentialing.get_appl_specialist_id(cp.cred_process_id) = 5
    ORDER BY 3 ASC, 3, 5, 12, 6
            Explain Plan Operation
    ID   PID    Card     Rows    Cost      SearchCols  /   Indexed Cols     Predicates 
    0:    1                       36   SELECT STATEMENT   
    1:    0     1       139       36    SORT ORDER BY   
    2:    1             139            . FILTER   [+]  
    3:    2     1       311       11   .. NESTED LOOPS OUTER   
    4:    3     1       311       10   ... NESTED LOOPS OUTER   
    5:    4     1       311        9   .... NESTED LOOPS   
    6:    5     1       311        8   ....+ NESTED LOOPS   
    7:    6     4        16        1   ....+. TABLE ACCESS BY INDEX ROWID CAT_TYPE_CODES   
    8:    7     4        16        1   ....+.. INDEX RANGE SCAN CAT_TYPE_CODE_UK 2/3 [+]   [+]  
    9:    6     1       311        2   ....+. TABLE ACCESS BY INDEX ROWID CRED_PROCESSES   [+]  
    10:    9   183     61927        1   ....+.. INDEX RANGE SCAN CDPR_CTCD_FK1 1/1 [+]   [+]  
    11:   10     1         3        2   ....+... NESTED LOOPS   
    12:   11     1        16        1   ....+.... TABLE ACCESS BY INDEX ROWID CAT_TYPE_CODES   
    13:   12     1        16        1   ....+....+ INDEX UNIQUE SCAN CTCD_PK 1/1 [+]   [+]  
    14:   11     1         3        1   ....+.... INDEX UNIQUE SCAN CAT_TYPE_CODE_UK 3/3 [+]   [+]  
    15:    5     1        11        1   ....+ TABLE ACCESS BY INDEX ROWID CRED_HISTORY   [+]  
    16:   15     1       311        1   ....+. INDEX UNIQUE SCAN CDHT_PK 1/1 [+]   [+]  
    17:   16     1       311            ....+.. SORT AGGREGATE   
    18:   17     1       526        2   ....+... TABLE ACCESS BY INDEX ROWID CRED_HISTORY   [+]  
    19:   18    23      9950        1   ....+.... INDEX RANGE SCAN CDHT_CDPR_FK 1/1 [+]   [+]  
    20:    4     1       219        1   .... TABLE ACCESS BY INDEX ROWID PROVIDERS   
    21:   20     1       219        1   ....+ INDEX UNIQUE SCAN PROV_PK 1/1 [+]  [+]  
    22:    3     1       311        1   ... TABLE ACCESS BY INDEX ROWID CRED_WORK_HISTORY   [+] 
    23:   22     3      1057        1   .... INDEX RANGE SCAN CDWH_CDPR_FK 1/1 [+]   [+]  
    24:    2   172                      .. INLIST ITERATOR   
    25:   24     1       172        1   ... INDEX UNIQUE SCAN CAT_TYPE_CODE_UK 3/3 [+]   [+]  
    26:    2     1         0        2   .. TABLE ACCESS BY INDEX ROWID CRED_HISTORY   [+]  
    27:   26    23      2004        1   ... INDEX RANGE SCAN CDHT_CDPR_FK 1/1 [+]   [+]  
    (1) X/Y: Where X is the number of searched columns from index, which has a total of Y columns.
    (2) Actual rows returned by operation (average if there were more than 1 execution).
       2 - filter( NOT EXISTS (SELECT 0 FROM "PPO"."CAT_TYPE_CODES" "BRDG_CAT_TYPE_CODES" WHERE
                  "CODE"="BRDG_CODE_UTIL"."ID_CODE"("BRDG_CREDENTIALING"."GET_APPL_STATUS_CD_CTC_ID"(:B1)) AND
                  ("TYPE_CD"='APPROVAL' OR "TYPE_CD"='DENIED' OR "TYPE_CD"='INACTIVE' OR "TYPE_CD"='TERMED') AND
                  "CATEGORY_CD"='APPSTAT') AND  NOT EXISTS (SELECT 0 FROM "PPO"."CRED_HISTORY" "BRDG_CRED_HISTORY"
                  WHERE "CRED_PROCESS_ID"=:B2 AND "EVENT_CD_CTC_ID"="BRDG_CODE_UTIL"."GET_ID"('CRED','SEVENT','MSODC
       8 - access("CTC_APPTYPE"."CATEGORY_CD"='CRED' AND "CTC_APPTYPE"."TYPE_CD"='APPTYPE')
       9 - filter("BRDG_CREDENTIALING"."GET_APPL_SPECIALIST_ID"("CP"."CRED_PROCESS_ID")=5 AND
                  ("CP"."INS_DT">=TO_DATE(' 2007-12-20 17:00:00', 'syyyy-mm-dd hh24:mi:ss') OR
                  "CP"."TYPE_CD_CTC_ID"<>"BRDG_CODE_UTIL"."GET_ID"('CRED','APPTYPE','RECPPO')))
      10 - access("CP"."TYPE_CD_CTC_ID"="CTC_APPTYPE"."CAT_TYPE_CODE_ID")
           filter( NOT EXISTS (SELECT 0 FROM "PPO"."CAT_TYPE_CODES"
                  "CTC_APPTYPE","PPO"."CAT_TYPE_CODES" "CTC_TYPE" WHERE "CTC_TYPE"."CAT_TYPE_CODE_ID"=:B1 AND
                  "CTC_TYPE"."CODE"="CTC_APPTYPE"."CODE" AND "CTC_APPTYPE"."TYPE_CD"='APPSENT' AND
                  "CTC_APPTYPE"."CATEGORY_CD"='APPTYPE'))
      13 - access("CTC_TYPE"."CAT_TYPE_CODE_ID"=:B1)
      14 - access("CTC_APPTYPE"."CATEGORY_CD"='APPTYPE' AND "CTC_APPTYPE"."TYPE_CD"='APPSENT' AND
                  "CTC_TYPE"."CODE"="CTC_APPTYPE"."CODE")
      15 - filter("CP"."CRED_PROCESS_ID"="CH"."CRED_PROCESS_ID")
      16 - access("CH"."CRED_HISTORY_ID"= (SELECT MAX("CRED_HISTORY_ID") FROM "PPO"."CRED_HISTORY"
                  "BRDG_CRED_HISTORY" WHERE "CRED_PROCESS_ID"=:B1 AND
                  "EVENT_CD_CTC_ID"="BRDG_CREDENTIALING"."GET_EVENT_CTC_ID"('SEVENT','SPESTCHG')))
      18 - filter("EVENT_CD_CTC_ID"="BRDG_CREDENTIALING"."GET_EVENT_CTC_ID"('SEVENT','SPESTCHG'))
      19 - access("CRED_PROCESS_ID"=:B1)
      21 - access("CP"."PROVIDER_ID"="P"."PROVIDER_ID"(+))
      22 - filter("CWH"."PRIMARY_PRACTICE_FLAG"(+)='Y')
      23 - access("CP"."CRED_PROCESS_ID"="CWH"."CRED_PROCESS_ID"(+))
      25 - access("CATEGORY_CD"='APPSTAT' AND ("TYPE_CD"='APPROVAL' OR "TYPE_CD"='DENIED' OR
                  "TYPE_CD"='INACTIVE' OR "TYPE_CD"='TERMED') AND "CODE"="BRDG_CODE_UTIL"."ID_CODE"("BRDG_CREDENTIAL
                  ING"."GET_APPL_STATUS_CD_CTC_ID"(:B1)))
      26 - filter("EVENT_CD_CTC_ID"="BRDG_CODE_UTIL"."GET_ID"('CRED','SEVENT','MSODC'))
      27 - access("CRED_PROCESS_ID"=:B1)

    Welcome to the forums!
    user11987210 wrote:
    In the explain plan I don't understand what's happining at line ID 10 and 11. Specifically, is the result at line 11 rowids from lines 12 & 14? and then what? Are those rowids somehow used in line ID 10?
    9:    6     1       311        2   ....+. TABLE ACCESS BY INDEX ROWID CRED_PROCESSES   [+]  
    10:    9   183     61927        1   ....+.. INDEX RANGE SCAN CDPR_CTCD_FK1 1/1 [+]   [+]  
    11:   10     1         3        2   ....+... NESTED LOOPS   
    12:   11     1        16        1   ....+.... TABLE ACCESS BY INDEX ROWID CAT_TYPE_CODES   
    13:   12     1        16        1   ....+....+ INDEX UNIQUE SCAN CTCD_PK 1/1 [+]   [+]  
    14:   11     1         3        1   ....+.... INDEX UNIQUE SCAN CAT_TYPE_CODE_UK 3/3 [+]   [+]   The NESTED LOOPS operation (ID #11) has two children, ID #12 sometimes called the driving source, and ID #14 the inner loop. ID #14 is executed once for each row returned by ID #12. The results of ID #11 are then fed to ID #10 which performs an INDEX RANGE SCAN.
    Hope this helps!

  • Can you help me explain this crash log?

    My system just crashed, but I don't understand why. Here is the log from the event viewer. What can you tell me about this?
    Log Name:      System
    Source:        Microsoft-Windows-Kernel-Power
    Date:          2/6/2014 3:38:39 PM
    Event ID:      41
    Task Category: (63)
    Level:         Critical
    Keywords:      (2)
    User:          SYSTEM
    Computer:      MYPC
    Description:
    The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Kernel-Power" Guid="{331C3B3A-2005-44C2-AC5E-77220C37D6B4}" />
        <EventID>41</EventID>
        <Version>2</Version>
        <Level>1</Level>
        <Task>63</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000002</Keywords>
        <TimeCreated SystemTime="2014-02-06T21:38:39.748002200Z" />
        <EventRecordID>30668</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="8" />
        <Channel>System</Channel>
        <Computer>MYPC</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="BugcheckCode">0</Data>
        <Data Name="BugcheckParameter1">0x0</Data>
        <Data Name="BugcheckParameter2">0x0</Data>
        <Data Name="BugcheckParameter3">0x0</Data>
        <Data Name="BugcheckParameter4">0x0</Data>
        <Data Name="SleepInProgress">false</Data>
        <Data Name="PowerButtonTimestamp">0</Data>
      </EventData>
    </Event>

    We do need the actual DMP file as it contains the only record of the sequence of events leading up to the crash, what drivers were loaded, and what was responsible.  
    We prefer at least 2 DMP files to spot trends and confirm the cause.
    Please follow our instructions for finding and uploading the files we need to help you fix your computer. They can be found here
    If you have any questions about the procedure please ask
    Wanikiya and Dyami--Team Zigzag

  • Help me explain to someone the difference between a laptop and an Ipad?

    She keep comming up with these wierd questions? I know the difference but I'm having trouble explaining it to her to make her understand.
    Thankx

    a laptop can do everything her desktop can, including printing, keeping lots of folders with stuff in them, working on Ms Office, Databsess, playing flash games etc...
    The ipad is meant to look at data. Books, pictures, videos, web pages, email, and listen to your ipod, of course. You can add programs, but they are normally not as functional (limited to some degree) when compared to desktop equivalents. There is a good spreadsheet, presentation program and word processor, however they are not the full programs as on her desktop.
    The ipad is better for use around the house, when not needing to create complicated documents, print etc...
    A typical night can be using it to see whats on the Tv that evening, finding nothing (no big surprise there), letting my 4 y/o play a game or two (usually shape matching or letters/shapes/numbers), reading a few pages of whinnie the pooh to him in his darkened room as he falls asleep. Then, since nothing is on tv, running the netflix app to stream a movie to it sitting in your lap. Head ot bed, reading on old Sci-Fi book from the 50's that was one of the 30,000+ on gutenberg for free, the backlight dimmed so as not ot keep my better half awake. Around midnight (good book , couldn't pout it down), plug it in to charge and see it still has over 10% battery left.
    Hope that gives her something,
    Jason

  • The computer has rebooted from a bugcheck. Please help to explain what the error is

    The computer has rebooted from a bugcheck.  The bugcheck was: 0x00000050 (0xfffff88803e62ff8, 0x0000000000000001, 0xfffff8800452dbf3, 0x0000000000000002). A dump was saved in: C:\WINDOWS\Minidump\041214-52484-01.dmp. Report Id: 041214-52484-01.

    We do need the actual DMP file as they contain the only record of the sequence of events leading up to the crash, what drivers were loaded, and what was responsible.  
    We prefer at least 2 DMP files to spot trends and confirm the cause.
    Please follow our instructions for finding and uploading the files we need to help you fix your computer. They can be found here
    If you have any questions about the procedure please ask
    If you are using Blue screen view, who crashed, or a similar application don't.  They are wrong at least as often as they are correct
    Wanikiya and Dyami--Team Zigzag

  • Please help me explain to my IT Department

    I will be taking training very soon on RoboHelp 8 for Word and I need to talk to my IT department about what they need to do with the files I generate (in regards to placing them in our web application). Anyone have any suggestions on anything?

    Hi there
    In addition to what others have said, I'd be double-checking the training. Where are you attending training where RoboHelp for Word is offered? All the training I'm aware of is for RoboHelp HTML.
    I think what Colum stated applies to RoboHelp HTML with the linking. I'm not certain RoboHelp for Word works in this manner, as Word is the editing environment.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Help me explain this String Comparison Bug!

    <%
          String strGender = rs.getString("gender");
          if(strGender.equals("male"))
               out.println("1");
          if(rs.getString("gender").equals("male"))
                   out.println("2");
          %>In theory, the output should be "12". But guess what, only "2" was printed. I spent hours of debugging because I was supposed to use strGender.equals but the results only ended up in frustrations. So I made experiments, and the direct comparison of rs.getString was the result that worked.
    Can anyone explain to me why?

    You know what is weird...
    the strGender already worked without me changing anything. All i did was eat my dinner, returned after 30mins, then it worked.
    Not the first time I encountered this problem.

Maybe you are looking for

  • Closing and opening in new fiscal period

    Hi I am going to close last fiscal period and open new period . What should I do step by step for closing inventory and BP and Accounting and Open them in new Period. does system has any facility to do these step automatically. Thanks in advance

  • Error while logging in Portal

    Hi, We are facing a problem in our portal which is installed as a part of Dual stack. While we try to login we get this error (after giving the username and password) - com.sap.portal.pcm.Title    Portal Runtime Error An exception occurred while proc

  • Unpredictable reboots on my early 2008 Macbook Pro with Mavericks

    Hello, My situation: 1) First problem I encountered was kernel panic on startup. I fixed it fixed by replacing new AppleSMC.kext by older one from 10.8.* version I suppose  (i used KextWizard). 2) Time after time MacBook restarts and then shows white

  • How do i authorize my computer? I just reauthorized all of them.

    I just deauthorized all ofmy computers and I cannot figure out how to authorize my new iMac.  I can see my buying history, but no other songs.

  • Generate or modify a workflow report to show Document ID

    How can I modify or generate a workflow report that shows the Document ID? The 2 standard workflow reports (Activity Duration Report and Cancellation and Error Report) do not show the Document ID. Thank you in advance for your kind guidance.