Explain plan left the building

Hello guys, i have interesting problem, at least it seemed to me like that.
I am on 10.2.0.4.0 and for every statement i do explain plan i get the same plan ???.
Propably very known issue to some, but i didn't exeperienced that till now, so if somene have some advice, please share.
E.g.
SQL> explain plan for select user from dual;
Explained.
SQL> select * from table(dbms_xplan.display);
Plan hash value: 3995103059
| Id  | Operation                    | Name           | Rows  | Bytes | Cost (%CPU)| Time     | Inst   |
|   0 | SELECT STATEMENT REMOTE      |                |     1 |    96 | 97591   (5)| 00:05:07 |        |
|   1 |  SORT ORDER BY               |                |     1 |    96 | 97591   (5)| 00:05:07 |        |
|*  2 |   TABLE ACCESS BY INDEX ROWID| CCONTACT_ALL   |     1 |    54 |     3   (0)| 00:00:01 | VIPBS~ |
|   3 |    NESTED LOOPS              |                |     1 |    96 | 97590   (5)| 00:05:07 |        |
|*  4 |     TABLE ACCESS FULL        | CUSTOMER_ALL   |     1 |    42 | 97587   (5)| 00:05:07 | VIPBS~ |
|*  5 |     INDEX RANGE SCAN         | PKCCONTACT_ALL |     1 |       |     2   (0)| 00:00:01 | VIPBS~ |
Predicate Information (identified by operation id):
   2 - filter("A1"."CCCONTRACT"='X')
   4 - filter((TO_NUMBER("A2"."CSCOMPTAXNO")=3007943362918 OR
              TO_NUMBER("A2"."PASSPORTNO")=0109965330447) AND (TO_NUMBER("A2"."CSLEVEL")=10 OR
              TO_NUMBER("A2"."CSLEVEL")=20 AND "A2"."TMCODE"<>59 AND "A2"."TMCODE"<>42 AND "A2"."TMCODE"<>61
              AND "A2"."TMCODE"<>11 AND "A2"."TMCODE"<>19) AND "A2"."CSTYPE"='a' AND "A2"."PAYMNTRESP"='X')
   5 - access("A1"."CUSTOMER_ID"="A2"."CUSTOMER_ID")
       filter("A1"."CUSTOMER_ID"<>0)
Note
   - 'PLAN_TABLE' is old version
   - fully remote statement
28 rows selected....so, it looks like i am doing all that just with select user from dual .... : ) ... ok
SQL> explain plan for
  2  SELECT param_value
  3  FROM ncis.cis_case_script_vars
  4  WHERE case_id = 296645706 AND seq = 1 AND param_name = 'OHOPNAMT';
Explained.
SQL> select * from table(dbms_xplan.display);
Plan hash value: 3995103059
| Id  | Operation                    | Name           | Rows  | Bytes | Cost (%CPU)| Time     | Inst   |
|   0 | SELECT STATEMENT REMOTE      |                |     1 |    96 | 97591   (5)| 00:05:07 |        |
|   1 |  SORT ORDER BY               |                |     1 |    96 | 97591   (5)| 00:05:07 |        |
|*  2 |   TABLE ACCESS BY INDEX ROWID| CCONTACT_ALL   |     1 |    54 |     3   (0)| 00:00:01 | VIPBS~ |
|   3 |    NESTED LOOPS              |                |     1 |    96 | 97590   (5)| 00:05:07 |        |
|*  4 |     TABLE ACCESS FULL        | CUSTOMER_ALL   |     1 |    42 | 97587   (5)| 00:05:07 | VIPBS~ |
|*  5 |     INDEX RANGE SCAN         | PKCCONTACT_ALL |     1 |       |     2   (0)| 00:00:01 | VIPBS~ |
Predicate Information (identified by operation id):
   2 - filter("A1"."CCCONTRACT"='X')
   4 - filter((TO_NUMBER("A2"."CSCOMPTAXNO")=3007943362918 OR
              TO_NUMBER("A2"."PASSPORTNO")=0109965330447) AND (TO_NUMBER("A2"."CSLEVEL")=10 OR
              TO_NUMBER("A2"."CSLEVEL")=20 AND "A2"."TMCODE"<>59 AND "A2"."TMCODE"<>42 AND "A2"."TMCODE"<>61
              AND "A2"."TMCODE"<>11 AND "A2"."TMCODE"<>19) AND "A2"."CSTYPE"='a' AND "A2"."PAYMNTRESP"='X')
   5 - access("A1"."CUSTOMER_ID"="A2"."CUSTOMER_ID")
       filter("A1"."CUSTOMER_ID"<>0)
Note
   - 'PLAN_TABLE' is old version
   - fully remote statement
28 rows selected.
SQL>..same plan for different sql...
..and now, i am trying to explain plan for several easy sqls but look...
SQL> explain plan for select * from all_objects where rownum < 2;
explain plan for select * from all_objects where rownum < 2
ERROR at line 1:
ORA-01039: insufficient privileges on underlying objects of the view
SQL> explain plan for select * from user_tables ;
explain plan for select * from user_tables
ERROR at line 1:
ORA-01039: insufficient privileges on underlying objects of the view
SQL> desc all_objects
Name                                                                    Null?    Type
OWNER                                                                   NOT NULL VARCHAR2(30)
OBJECT_NAME                                                             NOT NULL VARCHAR2(30)
SUBOBJECT_NAME                                                                   VARCHAR2(30)
OBJECT_ID                                                               NOT NULL NUMBER
DATA_OBJECT_ID                                                                   NUMBER
OBJECT_TYPE                                                                      VARCHAR2(19)
CREATED                                                                 NOT NULL DATE
LAST_DDL_TIME                                                           NOT NULL DATE
TIMESTAMP                                                                        VARCHAR2(19)
STATUS                                                                           VARCHAR2(7)
TEMPORARY                                                                        VARCHAR2(1)
GENERATED                                                                        VARCHAR2(1)
SECONDARY                                                                        VARCHAR2(1)...i can't figure this out... maybe i have to flush 'explain plan' ? it's ok if it sounds funny,im off with ideas..
then i tried to explain this sql:
SQL> explain plan for
  2  SELECT param_value
  3  FROM ncis.cis_case_script_vars
  4  WHERE case_id = 296645706 AND seq = 1 AND param_name = 'OHOPNAMT';
Explained.
SQL> select * from table(dbms_xplan.display);
Plan hash value: 3995103059
| Id  | Operation                    | Name           | Rows  | Bytes | Cost (%CPU)| Time     | Inst   |
|   0 | SELECT STATEMENT REMOTE      |                |     1 |    96 | 97591   (5)| 00:05:07 |        |
|   1 |  SORT ORDER BY               |                |     1 |    96 | 97591   (5)| 00:05:07 |        |
|*  2 |   TABLE ACCESS BY INDEX ROWID| CCONTACT_ALL   |     1 |    54 |     3   (0)| 00:00:01 | VIPBS~ |
|   3 |    NESTED LOOPS              |                |     1 |    96 | 97590   (5)| 00:05:07 |        |
|*  4 |     TABLE ACCESS FULL        | CUSTOMER_ALL   |     1 |    42 | 97587   (5)| 00:05:07 | VIPBS~ |
|*  5 |     INDEX RANGE SCAN         | PKCCONTACT_ALL |     1 |       |     2   (0)| 00:00:01 | VIPBS~ |
Predicate Information (identified by operation id):
   2 - filter("A1"."CCCONTRACT"='X')
   4 - filter((TO_NUMBER("A2"."CSCOMPTAXNO")=3007943362918 OR
              TO_NUMBER("A2"."PASSPORTNO")=0109965330447) AND (TO_NUMBER("A2"."CSLEVEL")=10 OR
              TO_NUMBER("A2"."CSLEVEL")=20 AND "A2"."TMCODE"<>59 AND "A2"."TMCODE"<>42 AND "A2"."TMCODE"<>61
              AND "A2"."TMCODE"<>11 AND "A2"."TMCODE"<>19) AND "A2"."CSTYPE"='a' AND "A2"."PAYMNTRESP"='X')
   5 - access("A1"."CUSTOMER_ID"="A2"."CUSTOMER_ID")
       filter("A1"."CUSTOMER_ID"<>0)
Note
   - 'PLAN_TABLE' is old version
   - fully remote statement
28 rows selected.
SQL>..and got the same plan again....
anyone with suggestons, anyone encountered this behaviour ?

Vili Dialis wrote:
Is there some way to force usage of one of them explicitly, how can i know which one is currently used ?
So what happend here ?
I am using what plan table of the above, and why that table generates always the same plan ?
*/To bypass the problem (probably), and to see how it happened (possibly) see http://jonathanlewis.wordpress.com/2010/01/25/old-plan_table/
Not sure why you keep getting the same plan, but dbms_xplan does a 'select where plan_id = (select max(plan_id) ..) so perhaps the plan_table(s) you keep using have an artificially high plan_id which is always getting selected. (You could try doing: delete from plan_table ; commit; )
Regards
Jonathan Lewis
http://jonathanlewis.wordpress.com
http://www.jlcomp.demon.co.uk
A general reminder about "Forum Etiquette / Reward Points": http://forums.oracle.com/forums/ann.jspa?annID=718
If you never mark your questions as answered people will eventually decide that it's not worth trying to answer you because they will never know whether or not their answer has been of any use, or whether you even bothered to read it.
It is also important to mark answers that you thought helpful - again it lets other people know that you appreciate their help, but it also acts as a pointer for other people when they are researching the same question, moreover it means that when you mark a bad or wrong answer as helpful someone may be prompted to tell you (and the rest of the forum) what's so bad or wrong about the answer you found helpful.

Similar Messages

  • Finder has left the building

    I installed with no problem, but yesternight my Finder quit working. I reset, thinking it was just a one-time problem, but the finder never launched. My startup items (tablet driver, suitcase fusion, etc.) failed to load as well. They appear to be waiting for the Finder.
    I waited as Spotlight re-indexed one of my external drives, then ran disk utility on all my disks and everything turned up ok. Still, the Finder is not working.
    I tried booting into a different user account (the one I never use and keep only for diagnosing problems) and then booting into Safe Mode, but the problem persists.
    What happened to my Finder and how can I fix it? Please help!

    DJAudioFreak wrote:
    I have an iPhone 4 which used to have Siri but she's now left the building. There is no Siri tab in the settings under general, I've got all restrictions turned off and I can't find her anywhere. I've tried a soft restart and I've also tried a settings restart but she refuses to come back.
    Any ideas?
    Thanks
    Upgrade to a new iphone is your only solution if you want to use Siri.

  • My sidebar has left the building!

    This WAS a perfectly centered Home.html page. I was attempted
    to cleanup and rename some files and everything went to #$@&.
    At any rate, the left side bar, menu container, and menu
    buttons have left the building. I cannot see them in design view
    and when viewing in the browser, about half of the aforementioned
    appear on the left side. It's like they "escaped" from the
    wrapper!?
    Would someone be kind enough to point out the error(s) I have
    obviously committed....please.
    Thanks - David Bird
    CSS code
    body {
    margin-left: 0px;
    margin-right: 0px;
    background-image: url(Art/centerbackground.jpg);
    background-repeat:repeat;
    #moviecontainer {
    position:absolute;
    top:10px;
    left:614px;
    width:147px;
    height:100px;
    padding-left:5px;
    padding-top:10px;
    border:0px;
    border-style:solid;
    #wrapper {
    position:absolute;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    color: #000000;
    height: 600px;
    width: 760px;
    left:50%;
    top:60px;
    padding-top: 10px;
    padding-left: 10px;
    margin:-50px 0px auto -380px;
    #banner {
    border:solid;
    border-width:0px;
    width: 585px;
    height: 111px;
    background-image: url(Art/Logodropout.png);
    background-repeat:no-repeat;
    #centercontent {
    width:402px;
    height:auto;
    position:absolute;
    top:200px;
    left:50%;
    margin:-50px 0px auto -201px;
    text-align:left;
    background-image: url(Art/centerbackground.jpg);
    background-repeat:repeat;
    #menucontainer {
    height: 400px;
    width: 150px;
    padding-top: 10px;
    padding-left:8px;
    padding-right: 12px;
    #leftsidebar {
    position:absolute;
    background-image: url(Art/Sidebar.jpg);
    background-repeat:no-repeat;
    height: 465px;
    width: 152px;
    float:left;
    top:150px;
    margin:0px;
    padding-left:0px;
    padding-top:10px;
    left: -172px;
    #rightsidebar {
    height:474px;
    width:152px;
    padding-top:10px;
    margin-top:25px;
    background-image: url(Art/Sidebar.jpg);
    background-repeat:no-repeat;
    float:right;
    #rightcontainer {
    height:450px;
    width:142px;
    padding-right:3px;
    padding-left:7px;
    margin-top:10px;
    float:right;
    home.html Code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Home - Welcome To !st State Bank &amp; Trust
    Company</title>
    <link href="fsbstyle.css" rel="stylesheet" type="text/css"
    />
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <div id="wrapper">
    <div id="banner"></div>
    <div id="moviecontainer">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','144','height','97','title','Ag
    Movie','src','FlashAg/Ag','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','FlashAg/Ag'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="144" height="97" title="Ag Movie">
    <param name="movie" value="FlashAg/Ag.swf" />
    <param name="quality" value="high" />
    <embed src="FlashAg/Ag.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="144"
    height="97"></embed>
    </object>
    </noscript></div>
    <div id="leftsidebar">
    <div id="menucontainer">
    <a href="home.html"><img
    src="/Buttons/Jpegs/homeup.jpg" alt="Home" name="home" width="138"
    height="24" border="0" id="home" /></a>
    <a href="locations.html"><img
    src="/Buttons/Jpegs/locationsup.jpg" alt="Locations"
    name="locations" width="138" height="24" border="0" id="locations"
    /></a>
    <a href="personalbanking.html"><img
    src="/Buttons/Jpegs/personalbankingup.jpg" alt="Personal Banking"
    name="personalbanking" width="138" height="24" border="0"
    id="personalbanking" /></a>
    <a href="commercialbanking.html"><img
    src="/Buttons/Jpegs/commercialbankingup.jpg" alt="Commercial
    Banking" name="commercialbanking" width="138" height="24"
    border="0" id="commercialbanking" /></a>
    <a href="agbanking.html"><img
    src="/Buttons/Jpegs/agbankingup.jpg" alt="Ag Banking"
    name="agbanking" width="138" height="24" border="0" id="agbanking"
    /></a>
    <a href="student1sb.html"><img
    src="/Buttons/Jpegs/student1sbup.jpg" alt="Student Banking"
    name="studentbanking" width="138" height="24" border="0"
    id="studentbanking" /></a>
    <a href="mortgages.html"><img
    src="/Buttons/Jpegs/mortgagesup.jpg" alt="Student Mortgages"
    name="mortgages" width="138" height="24" border="0" id="mortgages"
    /></a>
    <a href="insurance.html"><img
    src="/Buttons/Jpegs/insuranceup.jpg" alt="Insurance"
    name="insurance" width="138" height="24" border="0" id="insurance"
    /></a>
    <a href="rates.html"><img
    src="/Buttons/Jpegs/ratesup.jpg" alt="Rates" name="rates"
    width="138" height="24" border="0" id="rates" /></a>
    <a href="community.html"><img
    src="/Buttons/Jpegs/communityup.jpg" alt="Community"
    name="community" width="138" height="24" border="0" id="community"
    /></a><a href="careers.html"><img
    src="/Buttons/Jpegs/careersup.jpg" alt="Careers" name="careers"
    width="138" height="24" border="0" id="careers" /></a>
    <a href="privacysecurity.html"><img
    src="/Buttons/Jpegs/privacysecurityup.jpg" alt="Privacy &
    Security" name="privacysecurity" width="138" height="24" border="0"
    id="privacysecurity" /></a></div>
    </div>
    <div id="centercontent">
    <p align="center"><strong>WELCOME TO FIRST STATE
    BANK AND TRUST</strong></p>
    <p>sdfdsfs fasfddas sfasdfsdf fasdfdsfas asfsdfassfas
    asdfsdafasdf asfdsfasfsa asdfdsfas sadfas asfdsfsfsfad
    asfdfdsafasdfd sdfdsafsafs asdfdsaff asdf as
    </div>
    <div id="rightsidebar">
    <div id="rightcontainer">
    <a href="netteller.html"><img
    src="Buttons/Jpegs/nettellerup.jpg" alt="NetTeller"
    name="netteller" width="138" height="60" border="0" id="netteller"
    /></a>
    <a href="financials.html"><img
    src="Art/financials.jpg" alt="Financials" name="Financials"
    width="138" height="152" border="0" id="Financials" /></a>
    <a href="futures.html"><img src="Art/futures.jpg"
    alt="Futures" name="futures" width="138" height="190" border="0"
    id="futures" /></a></div>
    </body>
    </html>
    </html>

    On Thu, 17 Jan 2008 03:05:31 +0000 (UTC), "SwampeastMO"
    <[email protected]> wrote:
    >This WAS a perfectly centered Home.html page. I was
    attempted to cleanup and
    >rename some files and everything went to #$@&.
    >Anybody?
    Sorry, your cleanup has hopelessly munged up the code of the
    page. A
    quick look at your code shows that you currently have eight
    opening
    <div> tags, but only six closing </div> tags. You
    have four opening <p>
    tags, but only one closing </p> tag. You have two
    closing </html> tags.
    There may be more errors, but that's what jumped out at first
    glance.
    I'd suggest starting over. When you do, I'd also suggest you
    spend a
    little time working through a few CSS tutorials to gain a
    better
    understanding of how to position things. The first thing you
    should pick
    up is that position: absolute should be used only in specific
    and rather
    rare cases.
    Gary

  • Siri has left the building

    I have an iPhone 4 which used to have Siri but she's now left the building. There is no Siri tab in the settings under general, I've got all restrictions turned off and I can't find her anywhere. I've tried a soft restart and I've also tried a settings restart but she refuses to come back.
    Any ideas?
    Thanks

    DJAudioFreak wrote:
    I have an iPhone 4 which used to have Siri but she's now left the building. There is no Siri tab in the settings under general, I've got all restrictions turned off and I can't find her anywhere. I've tried a soft restart and I've also tried a settings restart but she refuses to come back.
    Any ideas?
    Thanks
    Upgrade to a new iphone is your only solution if you want to use Siri.

  • Need steps to capture a particular explain plan using the store outlines

    Hi,
    I have got the needed explain plan using hints in my query. I need to capture it using stored outlines.
    I am using Oracle 10.2.0.3.
    Can someone provide me the steps to capture this plan using an Stored Outline?I dont want to use any other method.
    Thanks,
    Sach

    I have got the needed explain plan using hints in my query. I need to capture it using stored outlines.Do you mean creating outline?
    Can someone provide me the steps to capture this plan using an Stored Outline?I dont want to use any other method?[http://www.oracle-base.com/articles/misc/Outlines.php]
    [http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_6005.htm]
    Edited by: Anantha on Apr 2, 2009 9:07 AM

  • Unable to Execute Explain Plan for the selected SQL

    When working with several SQL statements in one SQL Worksheet you execute the specific statement by selecting it and pressing F9.
    The same is not possible for the explain plan though.
    If you select the first SQL statement and press F6, the explain plan is executed correctly. If you try the same for any other statement, all you get is 'No SQL statement entered.' on the status bar.
    Maciej

    It is available.
    Type this in.
    create table xx (yy number(10));
    create table zz (aa number(10));
    select * from xx;
    select * from zz;Run all these statements by pressing f5.
    Place the cursor on 'select * from xx;'.
    Press f6 gives you a plan.
    Place the cursor on 'select * from zz;'
    press f6 gives you a different plan.
    The problem seems to be that F6 is still suffering from a statement selection bug which is already fixed for f9. That is selecting a whole statement results in failure to recognise a statement and the 'No statement entered' message.

  • Explain plan for the packages

    Hi ,
    We have no.of packages to check for explain plan.
    Is there any tool to which we can feed the packages and get the expalin plan result of all the queries.
    Please advice
    thanks
    Maanasa

    Hi Maanasa
    Two things…
    1)     I’m not aware of any tool that does what you are looking for.
    2)     Do you use bind variables in your SQL statements. If yes, there is no way to accurately get the execution plans without executing them. In fact the query optimizer requires the bind variable values to produce an execution plan…
    Hence, the advice of enabling SQL trace (either through the SQL_TRACE parameter or the DBMS_MONITOR package) is the best one.
    HTH
    Chris Antognini
    Troubleshooting Oracle Performance, Apress 2008
    http://top.antognini.ch

  • How Explain Plan Calculates the Bytes

    Hi All,
    I am using Oracle 10g edition 10.2.0.3.0.
    Here I have a table and an explain plan. Explain plan shows Bytes = 50, Cost = 1 and %CPU = 0. I would like to know,
    1) How bytes are calculcated?
    2) What "Cost = 1" means?
    3) What "%CPU = 0 means?
    SQL> desc t_pdur_insulin_prof
    Name
    SAK_RECIP NOT NULL NUMBER(9)
    SAK_CLAIM NOT NULL NUMBER(9)
    SAK_DRUG NOT NULL NUMBER(9)
    DTE_DISPENSE NOT NULL NUMBER(8)
    CDE_PROF_TYPE NOT NULL CHAR(1)
    SQL> explain plan for
    2 select * from t_pdur_insulin_prof
    3 where sak_recip = 10013819;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 438947110
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 2 | 50 | 1 (0)| 00:00:01 |
    |* 1 | INDEX RANGE SCAN| I_PDUR_INSULIN_PROF | 2 | 50 | 1 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    1 - access("SAK_RECIP"=10013819)
    13 rows selected.
    Thanks!

    user2081225 wrote:
    Hi All,
    I am using Oracle 10g edition 10.2.0.3.0.
    Here I have a table and an explain plan. Explain plan shows Bytes = 50, Cost = 1 and %CPU = 0. I would like to know,
    1) How bytes are calculcated?
    2) What "Cost = 1" means?
    3) What "%CPU = 0 means?
    SQL> desc t_pdur_insulin_prof
    Name
    SAK_RECIP NOT NULL NUMBER(9)
    SAK_CLAIM NOT NULL NUMBER(9)
    SAK_DRUG NOT NULL NUMBER(9)
    DTE_DISPENSE NOT NULL NUMBER(8)
    CDE_PROF_TYPE NOT NULL CHAR(1)
    SQL> explain plan for
    2 select * from t_pdur_insulin_prof
    3 where sak_recip = 10013819;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 438947110
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 2 | 50 | 1 (0)| 00:00:01 |
    |* 1 | INDEX RANGE SCAN| I_PDUR_INSULIN_PROF | 2 | 50 | 1 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    1 - access("SAK_RECIP"=10013819)
    13 rows selected.
    Thanks!consider Reading The Fine Manual
    http://docs.oracle.com/cd/E11882_01/server.112/e16638/optimops.htm#sthref981

  • NTLDR has left the building

    Hello All,
    Putting together a brand new comp (specs in sig) for work (planning on making a couple dozen of these as DVR devices for a 60 camera surveillance system) and ran into a bit of a problem.
    Put everything together, and the first thing i did is make a mirrored raid array.  After that, rebooted, made sure that looked well and good, and then booted from cd to install xp pro.  Hit f6, installed both drivers, etc.  Did a full format (why not?) instead of a quick, copied sys files, restarted, went through the generic config, restarted, a little more config and boom, we're in windows.  It detects some hardware, installs it automatically, lets me know i have to reboot to finish installation, so i do.
    NTLDR i smissing
    Press Ctrl+Alt+Del to restart
    My all time favorite error, one which i've probably spent hundreds of hours troubleshooting on many different machines...
    Raid array still seems fine, so i decide to see what i can do by booting from CD again... however.. if I "hit any key to boot from cd", it goes through its "setup is now inspecting your hardware configure ... " phase and then the screen goes black and the machine locks solid right when it should go to the blue setup screen.
    I've read through every mention of NTLDR in the forums, and havent found anything like this yet.  I tried disabling sound, lan, even SATA, to see if that would make a difference.  Tried messing with the boot order (which was/is set to cdrom, hard disk, and thats it, hard disk priority is SCSI for the raid first).
    Unlike other people having something similar, if i leave the cd in the drive but do not boot from it, it doesnt boot from the hard drive, just does the same as above.
    I also did not have anything in the system other than what is listed below and a generic cd drive (which is fine).
    Also, no pre-existing installations, as these were fresh hdds.  The system was rock solid up until this point, so i'm going to rule out memory.  It seems like a possible driver issue, but the black screen hang on booting from cd has got me wondering.  Any thoughts?

    Agree with Glenn.  It is certainly simpler to install your OS with just one drive in the sytem first (no reason to use F6).  That way you know the system is up and running and all hardware detected with correct drivers etc.  Then shut down Windows, plug in the power to your second drive, build your array, and boot into Windows.  Windows will then recognize the RAID and ask you to supply the drivers.  Do that via your floppy in drive A.  Then you should be up and running.
    Basically, as I understand it, the "ntlr is missing error" means Windows did not find the loader files it needs on the HDD that is selected as the first boot hdd. Setup would have put these files there in the previous part of the setup.  So apparently it does't recognize the RAID configuration you have as an HDD (yet) because you have't set it up that way in Windows.  If you start with just one drive then Windows setup cannot get "confused" at this point.

  • Iphoto has left the building

    Oh-oh. I think I deleted/trashed iphoto which I installed with ilife '09 last year.
    I know... I'm an idiot. Trouble is when i put the ilife disc back in my 8 yr old G4 emac, it rejects it. Is there any hope or should I throw the old beast off a cliff? thanks.

    Well, I had opened iphoto for something or other and the closed it. Later,when looking at "recently opened" list under left side column it showed up with everything else. I assumed it was an alias of some sort & safe to empty that record... so I trashed it & then later emptied the trash. It took about a minute for the trash to empty... not a good sign. Now I can't even find iphoto in apps or anywhere else. The icon is still in dock but doesn't respond.
    I'll go dig out my original discs that came with the eMac about five (not 8) yrs ago and maybe re-install and then hopefully the iLife "09 with work again to update that... i don't know. The most puzzling aspect is that neither the iLife nor the OS 10.5.6 disc I bought last year will start up any more.
    No matter what, It'd break my heart to lose all my family photos etc. from this past several years.

  • Vista has left the building...and the Recovery Disks do not work correctly.

    I've spent over a month and a half trying to fix my non-booting Satellite A215-S5818 running Vista.  Sometime mid-March (ah, the Ides of March!) I think I downloaded an automatic update and I remember the next time it booted my desktop was black; icons but no background picture.  Then I noticed on the bottom right it was saying my copy of Vista was not genuine.  I know that it is, because it is pre-installed.  So I ran check disk from the Properties page of C: in Windows Explorer. After it ran, I got BSOD.  At first I just booted into SafeMode and tried to disable whatever hardware/uninstall whatever software was causing the problem.  I think I got it to boot in SafeMode once or twice, then no more.  For a while I kept getting IRQL-NOT-LESS-OR-EQUAL, but I somehow stopped that through the command prompt(forum advice?).  Startup Repair could not fix it,  System Restore would not work on ANY restore points, even before March. The new BSOD error was:
    "STOP: c000021a {Fatal System Error}-
    The initial session process or system process terminated unexpectedly with a status of 0x00000000 (0xc0000221 0x00100594)"
    From then on I could only get a command prompt through the Repair Console.  So I xcopy-ed my Users directory to an external hard drive and grudgingly booted from the Toshiba CD, knowing it would obliterate everything, but I was desperate.  I got the 03-EEEE-0000 error.  Now I have a plethora of useless(?) CDs and DVDs I have burned ISO images on of any Freeware I thought could fix it, downloaded from the Internet using my husband's Windows 7 desktop computer.  I followed these instructions to the letter and it worked (I guess; it started immediately, no DOS objection), but when it rebooted I got a window (!) saying something about the type of hardware.  I haven't added or changed any hardware, but I have updated the BIOS recently.  So I clicked OK (no other choice), and now every boot up I get a window saying "Windows could not complete the installation.  To install Windows on this computer, restart the installation".  Startup Repair does not find any problems.  Could it be the BIOS?  I have re-flashed it twice, no difference.

    Oops! Sorry that was stupid on my part.
    From the command prompt you could type in   systeminfo   , and hit the 'Enter' key, it will take a little while to run, when it finishes, scroll back up to the top and you'll see OS Version and Service Pack you've got loaded. But, if you're booting off the recovery disk, that's the system info you'll get.
    If you can't get to the command prompt from the Advanced Boot Options menu, by trying to boot off the hard drive, and pressing F8, I'm not sure how you can find what Service Pack you have loaded.
    By using the Recovery Boot Disk, have you exhausted all the recovery options that Jerry linked before?
    What are the system recovery options in Windows Vista?
    How to use the Bootrec.exe tool in the Windows Recovery Environment to troubleshoot and repair start...
    Mike

  • Epson C80 software has left the building-what now?

    After my epson c80 wouldn't print, the printer utility wouldn't even recognize it. I tried reinstalling the software (1.33) from the original disk, and even reinstalled Tiger. But even though the Epson printer files appear to be in the library, when I try to add it using the Print Utility, nothing shows up--nothing! Here's what happens:
    Click on Add to bring up Printer Browser. Nothing in list. Click on More Printers. "Epson USB" shows up at the top of the window, and "Searching for new drivers" with spinning stick circle appears at bottom. But then nothing. All I can do is cancel.
    Any suggestions? TIA, Jim from Berkeley

    Reset Printing System (menu item in Printer Setup) and/or repair permissions and then try again. If no help there, we're probably talking a bad OS X install.

  • Rear Firewire ports have left the building!

    The rear firewire ports on my MacPro have stopped working (800 and 400)
    Not recognizing hard drives or Audio devices.
    The ones on the front still work but are making problems when connecting 400 and 800 together.
    What can I do to solve this problem of fix it?
    HELP!!

    Thought you could use this info about getting FireWire to work! Usually they all stop at the same time though.
    First, you should always Repair Permissions in Disk Utility before and after any update; I would do that now. If you installed your update with FireWire plugged in, your Mac may not recognize it anymore.
    Try resetting your FireWire ports by disconnecting all FW devices, shut down your Mac and unplug it from AC power (wall socket) for 30 minutes. plug it back in and try FW.
    If that didn't work, download the combo update from this site (yours may be corrupt), not Software Update, disconnect all firewire + USB devices except keyboard + mouse, Repair Permissions, re-install update, Repair Permissions again + try.
    If that still didn't get it Zap the PRAM. While restarting Mac hold down the following key combo Command-Option-P-R. Keep holding those keys down till you hear the second start-up chime, then release.
    A bad internal PRAM battery can also cause FireWire to not be recognized, so make sure it's good!
    Also, here is Apple doc.#88338 on getting FireWire to work.
    Here's another Fw Faq.
    DALE

  • Deeklipse has now left the building...

    Well that's me switched off iTunes Match on my iPhone.  Please could someone let me know if it ever starts to work properly!!!

    Understood, but of course the registered owner is not necessarily the user. As this is a business phone, the registered owner is my company and not the particular user. Using Find My iPhone on iCloud sort of negates those ownership rights I guess. It is nigh on impossible to turn off this facility on all corporate iPhones. Perhaps we should all lobby Apple so as to protect our rights.
    Thanks for your input

  • HP Quality Has Left The Building

    Sadly, it's true.  I recently purchased a HP7000 printer. The printer would not power off; the power and resume lights blinked continuously - no paper jam; gave a general printer error (no err #) and; a loose screw lay proudly atop the carriage mechanism. Guess where I sent this printer?  I received a replacement.  It powers on and off; no blinking lights - I'm hopeful.  But then, there was no test page printed.  In fact, the paper feed mechanism didn't work - at all!  The printer did nothing but prime the print heads until the color cartridges were out of ink.  You know where the second printer went!  That's two (2) out of two (2) defective products!!!!!
    What this experience tells me is that HP is manufacturing and shipping but not testing to save the cost.  I have no intentions of buying another HP product!!!

    On Thu, 17 Jan 2008 03:05:31 +0000 (UTC), "SwampeastMO"
    <[email protected]> wrote:
    >This WAS a perfectly centered Home.html page. I was
    attempted to cleanup and
    >rename some files and everything went to #$@&.
    >Anybody?
    Sorry, your cleanup has hopelessly munged up the code of the
    page. A
    quick look at your code shows that you currently have eight
    opening
    <div> tags, but only six closing </div> tags. You
    have four opening <p>
    tags, but only one closing </p> tag. You have two
    closing </html> tags.
    There may be more errors, but that's what jumped out at first
    glance.
    I'd suggest starting over. When you do, I'd also suggest you
    spend a
    little time working through a few CSS tutorials to gain a
    better
    understanding of how to position things. The first thing you
    should pick
    up is that position: absolute should be used only in specific
    and rather
    rare cases.
    Gary

Maybe you are looking for

  • Batch characteristic validation

    Hi, I have process inbound idocs, where I have to create batch numbers for materials if they do not exist and correspondingly batch characteristics too. I used functions BAPI_BATCH_CREATE , BAPI_OBJCL_CREATE and for the existing characteristic values

  • Help! Cannot browse mp3s by folder after upgrade to OS 4.5.0.110

    Help! After upgrading from (maybe) OS 4.1 to (definitely) OS 4.5, I now have a new media player that, um, I can no longer find my files with. Previously I would download various podcasts onto my phone and put them in the folder music\lectures. Then I

  • Saved pictures from the internet missing.

    Since downloading IOS8 I can't find pictures that I newley save from the internet. I clicked on two photos tonight and clicked the save photo option. When I went to the photo app they are nowhere to be found.

  • Process Order Confirmation and Pallet

    Hi, Would appreciate if you can pitch in to get information on below requirement. Say for eg., for the 1000 CA of header quantity in a BOM, one (1) Pallet (PAL) is required and assume the pallet's are back flushed. - if you confirm 1000 CA, then SAP

  • Print problem for Officejet 6700

    Recently I have been having trouble in printing the word document.  I was working about 3-4 days ago. I have windows XP with MS Word 2010.  The print is HP Officejet 6700 Premium.  I always use it in the offline mode.  It's connected to the computer