$I rows: 24,973,528 takes 8 hours to optimize against 0% fragmentation

We are using UCM 10g for our Web Content Management environment. We use Oracle Text Search (DB version 11.1.0.7) as our search engine. To maintain performance of the indexes, we have a daily job scheduled in database to optimize the indexes. But it takes around 8 hours to optimize a 0% fragmented index. Any idea why it takes long time? Any suggestions to reduce the time it takes to run?
Before running optimization script - Fragmentation details:*
total size of $I data: 838,699,490 (799.85 MB)
$I rows: 24,973,528
estimated $I rows if optimal: 24,973,528
estimated row fragmentation: 0 %
Time taken to optimize the above index:_
=============== FT_IDCTEXT2 Start Date and Time: 28=FEB-2013 02:37:22===========
PL/SQL procedure successfully completed.
=============== FT_IDCTEXT2 End Date and Time: 28=FEB-2013 10:55:55=============
Script:*
select '=============== FT_IDCTEXT2 Start Date and Time: ' ||sysdate||'=============== ' from dual;
begin
ctx_ddl.optimize_index('FT_IDCTEXT2','FULL', parallel_degree =>'10');
end;
select '=============== FT_IDCTEXT2 End Date and Time: ' ||sysdate||'=============== ' from dual;

Hi ,
I believe it would be a question for DB to tell why the fragmentation is taking such a long time for un-fragmented db schema . For UCM to improve it's search , indexing processes this action plan is done . But , since the DB itself is taking such an inordinate long time to do optimization , I think it would be a DBA question :-) .
Thanks,
Srinath

Similar Messages

  • Domain index query takes 12 hours to execute

    Hi Friends,
    My query which uses domain index takes 12 hours to execute. Can you please help me tuning this query?
    select /*+ NO_UNNEST ORDERED index_ffs(Term idx_recanon_term_ysm1) parallel_index(Term, idx_recanon_term_ysm1, 8) */ term.rowid
    from cmpgn.recanon_search_terms,cmpgn.recanon_term_ysm Term
    where cmpgn.recanon_search_terms.search_type=3 and
    contains(Term.RAW_TERM_TEXT,cmpgn.recanon_search_terms.search_text) > 0 and
    Term.pod_id=11
    Thanks in advance.
    Regards
    Bala

    First your driving table is recanon_search_terms to get the required search terms, then use them to query Oracle Text. What you are trying to do is to get a subset of table term first and than run every individual row of table term against the search terms. This approach will take a very long time.
    Not sure what you want to do, but it looks something I have been working on previously. As far I can see there is a table with controlled terms which are matched against other raw terms in a text document using Oracle Text. The issue is that you do a join in the contains clause without knowing the number of query expressions formed. It can be that 7 thousand individual queries run at once, than use indexes of the other predicates, do some sorting, etc. which would explain the long time needed. It will probably run out of memory causing all sorts of issues.
    As a quick fix try first following statement without hints.
    Tell us how many rows you get, the distinct counts for pod_id and search_type and how long it takes.
    CREATE TABLE test_table AS
    select term.pod_id pod_id, cmpgn.recanon_search_terms.search_type search_type, term_primary_key, ....
    from cmpgn.recanon_search_terms,cmpgn.recanon_term_ysm Term
    where contains(Term.RAW_TERM_TEXT,cmpgn.recanon_search_terms.search_text) > 0
    Create index test_idx on test_table(pod_id, search_type) and use test_table instead to get the results, just by providing pod_id and search_type without the join in the contains clause.
    SELECT ..
    FROM test_table
    WHERE pod_id = X
    AND search_type = Y
    Maybe this approach is sufficient for your purpose. For sure, it will give you instant results. In that case a materialized view instead of the table could work for maintenance reasons; I had some issues with materialized views for above scenario.
    However check very carefully the results. I would have some doubts that all rows in search_text form a valid query expression for Oracle Text. If search_text has just single tokens or phrases wrapping curly brackets around will probably resolve the issue.
    Think about to form one query expression through a function call instead of a table join inside the contains clause. Sometimes to run a set of individual queries are faster than one big query.
    select term.rowid --, form_query_exrpession(3) query_exrpession
    from cmpgn.recanon_term_ysm Term
    where contains(Term.RAW_TERM_TEXT, form_query_exrpession(3)) > 0
    The above function will form one valid Oracle Text query expression by using the table recanon_search_terms inside the function. This approach normally helps, at least in debugging and fine-tuning. Avoid using bind variables first in order to identify highly skewed distribution of search_type.
    The other performance issue is the additional predicate of pod_id = X, here the suggestion from radord works very well. If you want to get your hands dirty have a look at user_datastore in the Oracle Text documentation, this will give you all the freedom you want.

  • SQL Query takes 7 hours after upgrade to 10g

    the following query executes in under a minute in 9i, however once upgraded to 10g it takes 7 hours. The query is designed to select the data row with the max date value for the selected criteria (there are multiple rows that match the below criteria with different dates)
    I have tested in a lower environment the setting of "_optimizer_cost_based_transformation"=off and this corrects the problem. I do not feel comfortable setting this parameter session or system wide to provide a solution
    We are running Oracle 10gR2 on Solaris
    select "INSTN_ID_N",
    "MEAS_D",
    "FEED_TYPE_C",
    "FREQ_C",
    "STAT_LVL_C",
    "TS_D",
    "IX_INSTN_ID_C",
    "ENTI_TYPE_C",
    "CNTXT_ID_C",
    "CNTXT_C",
    "IX_CNTXT_ID_C",
    "VND_C",
    "PRCS_C",
    "USR_ID_C",
    "STAT_C",
    "OVRD_RSN_C",
    "LD_DT_D",
    "UPD_USR_C",
    "UPD_TS_D",
    "INS_USR_C",
    "INS_TS_D",
    "DEL_FLG_C"
    from IDA.V_INSTANCE_STATUS M
    where
    TS_D =
    select max (TS_D) from IDA.V_INSTANCE_STATUS
    where
    INSTN_ID_N = M.INSTN_ID_N AND
    MEAS_D = M.MEAS_D AND
    FEED_TYPE_C = M.FEED_TYPE_C AND
    FREQ_C = M.FREQ_C AND
    STAT_LVL_C = M.STAT_LVL_C AND
    IX_INSTN_ID_C = M.IX_INSTN_ID_C
    )

    user638113 wrote:
    the following query executes in under a minute in 9i, however once upgraded to 10g it takes 7 hours. The query is designed to select the data row with the max date value for the selected criteria (there are multiple rows that match the below criteria with different dates)
    I have tested in a lower environment the setting of "_optimizer_cost_based_transformation"=off and this corrects the problem. I do not feel comfortable setting this parameter session or system wide to provide a solutionIf you're sure that the "lower" environment reproduces the same issue, and not due to some other differences (different statistics, parameters etc.), then you could share the two different execution plans generated via DBMS_XPLAN.DISPLAY having the cost based transformations turned on and off. Make sure you use the \ tags before and after the plan output to format it in fixed font. You can use the "Quote" button in the message editor to see how to use the tag.
    Furthermore a optimizer trace (10053) might reveal why the cost based transformations lead to such an result.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Query takes 14 hours to complete - kindly help

    I'm using Oracle9207 32bit on windows server 2003.
    I executed the following query and it takes 14 hours to complete. I don't understand why it takes too long, the database is in archivelog mode and it is not running any other queries. I even specified nologging and the parallel option. And before performing the operation I even "alter table move..." the incmsg table.
    The incmsg table contains around 70Million rows.
    create table "ECI"."outactions_temp" tablespace USERS nologging parallel as select * FROM "ECI"."outactions" WHERE "ECI"."outactions"."incmsgserno" IN (select "ECI"."incmsg"."serno" from "ECI"."incmsg" where "ECI"."incmsg"."applicationserno" = 2 and "ECI"."incmsg"."timestamp" between to_date('01-MAY-2007', 'DD Mon YYYY') and to_date('21-SEP-2007', 'DD Mon YYYY'));
    The execution plan is as follows:
    SQL> select plan_table_output from table(dbms_xplan.display('PLAN_TABLE',null,'ALL'));
    | Id | Operation | Name | Rows | Bytes | Cost | TQ |IN-OUT| PQ Distrib |
    | 0 | CREATE TABLE STATEMENT | | 993 | 2050K| 8322 | | | |
    | 1 | LOAD AS SELECT | | | | | 30,01 | P->S | QC (RAND) |
    | 2 | TABLE ACCESS BY INDEX ROWID | outactions | 1 | 2080 | 3 | 30,01 | PCWC | |
    | 3 | NESTED LOOPS | | 993 | 2050K| 8322 | 30,01 | PCWP | |
    | 4 | TABLE ACCESS BY INDEX ROWID| incmsg | 993 | 34755 | 5343 | 30,00 | S->P | RND-ROBIN |
    | 5 | INDEX RANGE SCAN | IX_INCMSG_TSTAMP | 178K| | 334 | | | |
    | 6 | INDEX RANGE SCAN | IX104_1 | 1 | | 2 | 30,01 | PCWP | |
    PX Slave SQL Information (identified by operation id):
    1 - CREATE TABLE "ECI".:Q630001 TABLESPACE "USERS" NOLOGGING AS SELECT C0,C1,C2,C3,C4,C5,C6,C7 FROM (SELECT
    /*+ ORDERED NO_EXPAND USE_NL(A2) INDEX(A2 "IX104_1") */ A2."serno" C0,A2."source" C1,A2."incmsgserno"
    C2,A2."strategyserno" C3,A2."testrunserno" C4,A2."timestamp" C5,A2."xml_actions" C6,A2."status" C7 FROM :Q630000
    A1,"ECI"."outactions" A2 WHERE A2."incmsgserno"=A1.C1)
    23 rows selected.

    I executed the query without the create table statement and the following is the explain plan. I'm still reading thru FAQ on how to format the explain plan.
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes | Cost
    | TQ |IN-OUT| PQ Distrib |
    | 0 | SELECT STATEMENT | | 993 | 2050K| 832
    PLAN_TABLE_OUTPUT
    2 | | | |
    | 1 | TABLE ACCESS BY INDEX ROWID | outactions | 1 | 2080 |
    3 | 33,01 | PCWC | |
    | 2 | NESTED LOOPS | | 993 | 2050K| 832
    2 | 33,01 | P->S | QC (RAND) |
    | 3 | TABLE ACCESS BY INDEX ROWID| incmsg | 993 | 34755 | 534
    3 | 33,00 | S->P | RND-ROBIN |
    PLAN_TABLE_OUTPUT
    | 4 | INDEX RANGE SCAN | IX_INCMSG_TSTAMP | 178K| | 33
    4 | | | |
    | 5 | INDEX RANGE SCAN | IX104_1 | 1 | |
    2 | 33,01 | PCWP | |
    PX Slave SQL Information (identified by operation id):
    PLAN_TABLE_OUTPUT
    2 - SELECT /*+ ORDERED NO_EXPAND USE_NL(A2) INDEX(A2 "IX104_1") */
    A1.C0,A1.C1,A1.C2,A2.ROWID,A2."serno",A2."source",A2."incmsgserno"
    ,A2."strategyserno",A2."testrunserno",A2."time
    stamp",A2."xml_actions",A2."status" FROM :Q633000 A1,"ECI"."outact
    ions" A2 WHERE A2."incmsgserno"=A1.C1
    PLAN_TABLE_OUTPUT
    Note: cpu costing is off, PLAN_TABLE' is old version
    21 rows selected.
    SQL> spool off;

  • Select count(*) where exists (takes 5 hours).

    Hello Gurus,
    I have two databases on two servers, I am counting how many rows are similiar on two tables that are identical, and the rows should be identical as well. I am running a select count(*) where exists query and it takes 5 hours to complete.
    Each table only has two million rows.
    What can I do to speed it up?

    5 hours to process 2M rows does sound a bit long :(
    I didn't see this mentioned explicitly, but I thought the idea of comparing data on 2 servers implied a database link. Tuning distributed queries can be nasty.
    Start by getting an execution plan of the query to figure out what it is doing. Compare that to the plan generated by the already suggested MINUS operator. You'll need to do MINUS twice with each query in the other's position the second time. Alternately, check the indexing on the subqueries; EXISTS tends to work best with fast indexed lookups. FTS on an EXISTS subquery is not good :(
    Think about copying the data locally to one system or the other first, maybe in a materialized view or even global temporary table.
    Finally, think about tuning the transfer. There are articles on Metalink on tuning the transfer packet sizes (SDU/TDU) which might help IF YOU ARE ON UNIX; I haven't had any luck changing these values on Windows. You can also look into setting tcp.nodelay which can affect when packets get sent (another Metalink article should cover this).

  • Apple TV (Gen 2&3) takes several hours to load a movie from the iTunes Library

    I know this had been discussed before, but a went through all posts that I could find and never found a solution.  I will list below everything I have tried and if anyone else has ANY ideas I would be extremely greatful to hear them!  To reiterate the issue any time I try to play a movie from MY iTunes library it takes several hours before it will even start playing.  Now, to what I have already tried...
    1.  I cycled my router first and after that didn't work I completely took it back to default settings.  My router is an Apple Airport Extreme
    2.  I completely uninstalled iTunes and then reinstalled it with full library, and then I also tried with just one movie in my library that I know used to work.  My home computer is a Windows 7 PC.
    3.  I restarted my Apple TV, and also bought a Gen. 3 Apple TV and tried it new out of the box.
    4.  I have tried to stream on both WiFi and hooked up to an Ethernet Cable.
    5.  I have tried with all firewalls turned off on the PC and router.
    6.  I have ended home sharing on all devices and restarted home sharing on just the Apple TV and PC.
    7.  I have turned off all devices using WiFi in the home.
    That is all I can think of off hand so if you have any other ideas please do not hesitate to chime in so I can try something else. Do know that my Apple TV used to not have any issues and worked great since I irst purchased the Gen. 1 Apple TV. 
    PLEASE HELP!!!!!!!

    I have the same problem.  I just purchased the Apple TV software 5.0.  Apple TV is working other than downloading movies.  I have been trying to download one movie for the past two days.  I have a wireless network, using AT&T DSL.  I have tested the connection using the test option in the Settings area of the Apple TV, which passes. 
    I have also tried rebooting my Apple Tv and turned off all other wireless options.  I am able to download Netflix movies using the PS3 without a problem, why not on my Apple TV.  I hope I didn't just purchase this device to stream music and photos. 
    I hope someone has a solution to this problem. 
    By the way I just upgraded my modem and router (Airport Extreme). 
    Thanks for the help!!!!

  • TS1424 Hi, I've just rented a video, which says its going to take 14 hours to download. The 48 hours it gives you to watch the video has already started an hour ago. I had a message which says that I can start watching the film now but it dosen't play. Pl

    Hi,
    I've just rented a movie, which claims its going to take 14 hours to download. Its still at it after 1 hour. To make matters worse, the 48 hours it gives you to watch it has already started and charged me an hour. There was a message to say I could start watching it now but it dosen't work. Please can you help?

    You'll have to wait till it downloads much further than. If your download says it will take 14 hours to download, you have a very slow connection. You would never be able to watch the movie until it downloads completly.

  • HT201317 I have over 300 photos and 87 videos on my iphone 5.  each time I plug in for battery I get a message saying not enough space, need to buy more, so I did yesterday.  While attempting to do icloud storage again it said would take 83 hours.

    I have over 300 photos and 87 videos. When I recharge the battery I am geting the message to buy more storage to because not enough icloud space.  So I did yesterday.  That went ok, but the new message tells me it will take 83 hours.  Perplexed I went thru the settings and turned off apps and their data that I didn't realize where on.  Now I'm not sure if I needed to purchase more storage but it is still taking forever to complete the task.  Am I on the right track with this, meaning will take forever to store all my photos or what ?  The only other item I have on to store is contacts.  Can you assist me ?  Thanks - emoslim

    Welcome to the Apple Community.
    The first back up to iCloud may take some considerable time. Just how long isn't really possible to say without knowing how much is in your back up and your connection speed.
    What many people don't realise is that upload speeds are often significantly less than download speeds, so for example a user may have a download speed of 40 Mbps, but only 1 Mbps for uploading. As a rough guide it will take around 2 ¼ hours to upload 1 GB of data at 1 Mbps.

  • I'm trying to download an episode of Dr. Who but it keeps telling me it's going to take 24 hours, and then it crashes and says "there was a problem downloading an unknown error occurred 50.  Any Ideas on how to fix it?

    I'm trying to download an epsiode of Dr. Who, but the download is saying it will take 24 hours, and then it stops and says "there was a problem downloading; an unknown error occured (50).  How can I fix this?  I don't think it's my internet, it's really pretty fast. 
    Thanks! 

    Try fixing up the validation issues...
    http://www.feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.stereogol.com%2Faudi o%2Fwimpy_podcast.php
    Not promising it will help, but it's worth a shot.

  • New iPod touch will not load app store or iTunes.....safari is working fine. Also software update says it is going to take 49 hours??? Can anyone help?

    My new iPod touch is not letting me open the app store or iTunes. Safari is working fine. Also my iPad and iPhone are working fine. Wifi is connected. The software update is also taking forever on iPod, it says it will take 49 hours. Should it take that long? I have tried resetting, turning on and off, making date and time right etc. the first day we got the iPod touch the app store worked but not since.

    Can't connect to the iTunes Store
    Typically, the download speeds up. You can try when connected to another network

  • I plugged my ipod touch into my laptop and started to down load an (1) upgrade.  But Itunes says that the upgrade will take two hours.  I started the down load and it started and stoped and eventualy never complerted the down load.  How can I fix this ?

    I plugged my Ipod touch into my Dell laptop and went to Itunes.  Itunes told me I should down load an upgrade, so I did.  Itunes said the down load would take two hours.  I started the down load, but after two + hours (&longer) , after several starts and stops the down load never completed. 
    I recently got a (fake anti virus) virus and it damaged my computer.  I got it fixed and reinstalled the software and it appears to be working correctly. Could this be the part of the problem ?
    Would it help if I reloaded the Itunes (off an external HD) or downloaded it again from Itunes ?
    Thanks

    I doubt it.  For my updates, it has typically taken me many tries/retries.  Like for you, the download would stop.  and I would have to restart from the beginning.  If you get a network timed out error try disabling the security software on your computer.

  • Just bought a new iMac and it is telling me it will take 27 hours to transfer documents from the old one!! Is this normal? Can I speed this up some how??

    I just bought a new iMac and it says it will take 27 hours to transfer documents from the old mac! Is this normal? Can I speed this up??

    If you are transferring with Wi-Fi or Ethernet and you have to transfer a lot of files, it's normal. Wi-Fi and Ethernet are the slowest methods to transfer files.
    Instead, you can check if your old Mac has got a FireWire 800 port. If so, you can get a Thunderbolt to FireWire adapter and a FireWire cable, so the transfer will be done by FireWire, making the migration faster.
    If you don't want to spend money, continue the migration. Another thing you can do is to get an external drive, make a Time Machine backup of your old Mac and use the backup to transfer your files to the new Mac. Read > http://support.apple.com/kb/HT4889?viewlocale=en_US&locale=en_US

  • My iPad 3 seems to take forever to charge. It will easily take 6 hours plus to fully charge to 100%, it has always been like this so thought it was normal, however my friends point out it isn't. Does anyone else have similar charging times? Thanks, Claire

    Hi All,
    I have had my iPad 3 since Feb 2012 and have always commented on it's slowness to charge. I was just wondering if it's meant to take 6 hours plus to charge to 100% or if this is a bit excessive?
    As it has always done it, I have never really thought of it but a lot of my friends are now commenting that it's a really long time and it shouldn't take that long.
    Thanks,
    Claire

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • HT1766 I have been trying to back up my iphone it says I have 3.5 GB to 5 GB but I thought my phone had 8 GB. I got a message that it would take 8 hours and then I got a message it couldn't back up. Any one have an idea of what the problem could be?

    I have been trying to back up my phone and got a message that it would take 8 hours. I let it go over night and when I looked at it in the morning I got a message my data couldn't be backed up. I though my phone had 8 GB. If I have too much data what items should I delete in order to have my data backed up? I have deleted most of my pictures so I didn't think I had that much data to back up. If any one has experienced this please advise. I think my battery is about to die and I want my data back up ASAP.

    What computer do you have?
    What operating system is it running?
    Allan

  • IMac 20" was running very slow (could not even scroll without the spinning beach ball of death), The computer was operating on OSX 10.5. After a lot of attempts of diagnostic attempts, have resorted to an erase and reinstall. says it will take 60  hours!

    Working on my friends iMac 20" computer. It is 2.66 ghz, and was running 4mb of ram when the computer started acting up on OSX 10.5.
    When I was called over the computer was so slow that I could not even scroll without getting the beach ball of death. I checked the activities moniter, and found an HP application was taking up 46% of the CPU. We attempted to go in and uninstall all of the HP applications, but the computer ended up freezing. Ended up doing a hard shut down, and decided to run disk utilities. Repaired both Permissions, and Disk. Restarted... no difference. Thought of restoring the computer to when it was working fine via Time machine in disk utility mode... failed. Finally resorted to deleting the hard drive, reinstalling Tiger, and upgrading.
    After what seemed like forever for the hard drive to erease, attempted to reinstall. Ended up taking almost an hour to verify the disk, and then announced, that it would take 58+ hours to install. After leaving it for 3 hours, the number was going up, and was not installing.
    I then thought the problem would be the 2nd party ram. We replaced the paired 2mb's to give 4mb's with the origional paired 1mb's providing now 2 mb's. Attempted to reinstall osx. Same problem 60+ hours after 3 hours of letting it sit.
    What to do now? Is it the logic board? Could it be a faulty hard drive? Should I attempt in firewire more from another computer? Do a 7 pass erase over the hard drive? Run Disk warrior?
    If anyone could give some info on why this is so blessedly slow that would be great thanks!

    Decided to try and chek out the hard drive more extensively. SMART, states that it is verified. After running Diskwarrior and repairing all of the disk and the permissions, and running a hardware test, everything seemed to be running fine.
    Went back to disk utilities, checked disk and permissions again, verified. SMART states it is verified.
    Attemping now to install Mac OSX 10.4.7 from the original install disk. I am currently attemting the basic install, no programs, nothing. It has been over an hour, It is 44% of installing the base system Part 1, announcing 5 hours and 53 minutes.
    When I did erase the hard drive yes I selected to write over zeros once. I then erased a second time from Diskwarrior.

Maybe you are looking for

  • Invoice without reference to PO in SUS

    Dear Experts, As you know SRM does not support creation of invoice without any reference to the Purchase Order. However, I get to see the option of creating manual invoice (invoice without reference to the PO) in SUS. Now, I created a my SUS test sys

  • Creating Physical Standby on AIX Server!!

    I searched Oracle docs and other related sites, i didn't find any specific document on this subject. I wonder if same procedure, which is applicable for Windows, is also applicable and can be followed for AIX Systems?!!! Any help on this?? Thanks

  • Buying from the UK store when your home store is US...

    So there is the album that is not carried in the US iTunes store but is, however, in the UK iTunes store.... is there anyway to purchase this album and use the billing and card I have here in the States? It keeps telling me that I am only valid to us

  • Debug Event when importing HDV footage

    In short: When I try to import HDV footage into a project (.mpeg format), I receive the following message: Premiere Pro Debug Event premiere pro has encountered an error. [..\..\src\time.cpp-105] Subsequently premiere fails to import the files... I f

  • Iphone is unable to open my library?

    I have an IPhone Library and need help on how to recover it since it tells me that it might be used by other application or is not readable