Just when you think you have it

Everything goes to hell.  
I've had nothing but issues trying to get my MSI board up and going good.  I've checked/replaced memory, bought new HD's.  Replaced processor.  Even RAM'ed one board. I then finially get my machine up and running using standard IDE drive.  All seems to be going great.  I decided to go back to the SATA drive.  
Guess what.  Crap again. It ran great for a week then I come into my computer room and see it rebooted.  Sitting at the login screen go to log in.  Won't log in.  Now reboot.  Won't come up at all. I reinstall XP after several attempts I get it accomplished. (most of the time it sees the hd but when it goes to check it it locks up)  I finially get it up and going agian.  Constant lockups.  now I'm right back to where I was.  A machine that won't run.  Just sits at the XP load screen.
I'm giving up.  As soon as the Nforce 3 250 board comes out I'm buying it.
Shane

well psu is the #1 prob with this board and the a64
mem is #2
well the enermax is quite popular, i was thinking about the 660, but nobody uses that one (too big i guess)  but the 485 is another chice, as is pc power & cooling
tubo 510..looks very good. but $$$ i would go for a big one as the new video cards look hungry (taking 2 molex conectors)
as you can see i have a big load on mine and i have a bunch of usb stuff to boot,
 the 9800 uses huge amounts of energy, and i suspect the pump can use more then your hard drives,
good luck

Similar Messages

  • For me, a time capsule is even safe when you have whatter damage op fire in your house. Am I wrong or is it just an additional HD like there are so maney with the only advantage that it goes automatically via your wifi for apple devices?

    For me, a time capsule is even safe when you have whatter damage op fire in your house. Am I wrong or is it just an additional HD like there are so maney with the only advantage that it goes automatically via your wifi for apple devices?

    Jloe,
    As I have posted before, You, and others having issues with Verizon would be much better off if you complained to the FCC and FTC as well as your Senators and Congressmen.  We, as individuals, have such small voices - use them where they might do the most good.
    Also, don't assume that Verizon doesn't monitor these postings, they actively do & sometimes contact those that post complaints.
    Sorry for your problems.  GC

  • Just When You Thought Scary Snakes Were Bad

    Just when you thought that scary snakes were about as bad, as it could get... along come a giant Sea Lamprey: http://www.theblaze.com/stories/2013/02/15/what-is-this-alien-like-creature-found-in-new-j ersey-and-yes-its-real/
    Now you REALLY won't want to go for a swim: http://www.youtube.com/watch?v=wCfWHqrYUqo
    Wonder if they have those things in Lake Minnetonka?
    Hunt

    Geesus... BIll !    I was scared enough before this...just about life in general...now I'm shaking in my boots !
    hehe... good shark music.. I think Steven S used that same composer for a bunch of his work ??? Seem to think that for some reason...
    LOL... what a hoot...
    Its definitely time for a beer !
    thanks for the laugh !

  • I did all the steps to restore my password when you have never synched to a computer before.  I got to step 4 where my ipod told me to connect to itunes but itunes did not respond. what do I do now?

    I am trying to restore my password.  I followed the steps for doing so when you have never synched the ipod to your computer. I got so far as the 4th step when my ipod told me to connect to itunes.  The last step is itunes is suppose alert me that it senses a device going through recovery mode.  It never did that.  I also just downloaded the latest itunes so what do I do now?  Im only 10 and find this really confusing.  But Im trying

    Place the iPod in recovery mode and restore via iTunes on your computer. For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • What index types do you suggest when you have...

    If you have tables A, B, C and they are all partitioned range by created_date where that is a timestamp
    If nearly all queries can only specify created_date on C only because the B's that belong to A and the C's that belong to B can all be in different partitions relative to their children. So if you have weekly partitions for A, B, C the C's the belong to B and the B's the belong to A can be in different weeks partitions. Now A, B and C all use surrogate keys and there's an index on all of them. You have one to many b/w A->B and one to many b/w B->C where any C has a 1 B parent and that B parent can have one and only one A parent.
    When doing the join you end up doing something like
    select * from A, B, C
    where A.a_id = B.a_id
    and B.b_id = C.b_id
    and C.created_date >sysdate - 1
    The problem is that the indexes on A and B are all global non partitioned as are the indexes on C
    Right now we get partition elimination on C on a good day but when the optimizer decides go to A first we get none. Whenever the optimizer goes to A it often does partition range all scans because there is no partition key on A or B
    used in the query.
    How can we get the query plan to reliably use C first so that partition elimination is always guaranteed.
    Currently our thinking is to use /*+ ORDERED */ where the from is C, B, A
    Unfortunately the programs cannot introduce bind variables so where we can use Baselines to manage the plan for a given sql_id the only way we can do this is to use CURSOR_SHARING=force via login trigger on their session. This forces the
    introduction of bind variables in to the query but Their queries are formed dynamically from a GUI screen that optionally can provide different parameters. So not only do you have N's items in an IN clause to worry about you also have other optional parameters that can show up in the query depending on whether they are used or not.
    Q. Has anybody solved this problem by wrapping the query in a procedure so that you can pin the plan to the procedure where all that differs in the procedure is how the arguments are specified? This seems tedius to me because the procedure would have to take comma separate lists of values whenever you want to pass the values to be used in an IN clause.
    Only if you wrap a query that can have optional parameters and N values for any parameter can you manage the plan for that procedure thru a baseline otherwise you simply end up with too many plans to manage because of the different combinations of the size of the IN clauses and the optional parameters that can be specified.
    When joining b/w A, B, C etc what indexes should be partitioned?
    The typical query uses column values on A to limit the C's associated with the B's that are associated with the A's that match those columns. Those fields on A have global indexes so often when the plan is one where it starts at A first and works it's way down it has to consider far too many rows from A that are unrelated to the eventual partition narrowed to from the C.created_date predicate.
    Edited by: steffi on Mar 8, 2011 8:56 PM
    Edited by: steffi on Mar 8, 2011 8:57 PM
    Edited by: steffi on Mar 8, 2011 8:58 PM

    Dear Steffi,
    The problem is that the indexes on A and B are all global non partitioned as are the indexes on CWhy are you saying that this is a problem?
    What are the definition of your primary index on A, B, and C?
    You can eventually add the partition key (created_date) to those primary keys and hence locally partition their corresponding PK indexes
    As far as you wrote that there is no relation ship between A.created_date, B.created_date a and C.created_date, then I beleive you can't benefit from the partition wise join because in such case you need to join A,B and C on the same partition key which is created_date
    Currently our thinking is to use /*+ ORDERED */ where the from is C, B, AUsing /*+ ORDERED */ is not a guarantee that the Oracle Optimiser will obey this hint.
    Use the hint /*+ Leading(C) */ instaedYou know that when you wrap your query into a static PL/SQL procedure you don't have to care then about the use bind variable. It will be used;
    that is how static PL/SQL wroks. But when you are using dynamic sql into this PL/SQL procedure you need in this case to take care about using bind variable.
    The auto-binding trick which is represented by the cursor_sharing=force (or similar) is not highly recommended as far as there exist side effects like the one that cames to my mind now which is when you have function based indexes based on litteral (for example a function based index like substr(a,2,4)) will be rewritten, when cursor_sharing is set to force, to be substr(a, :SYS_B0, :SYS_B1) which will not mach your original query and will not use the function based index anymore
    Best Regards
    Mohamed Houri

  • HT1296 How do you sync iphone and PC when you have two different iphones/users?

    How do you sync iphone and PC when you have two different iphones/users in house? I just tried to sync my iphone and cancelled sync becauase I saw it was updating my phone with my husband's apps! How do I make it so that sync can distinguish between my and my husband's phone?

    I sync two iPhones and an iPad with one iTunes library on the same computer and each device has different content. Each device has its own sync preferences with iTunes. You can transfer the same music and apps to each device or different music and apps.
    Are you sharing the same Apple ID or iTunes account?

  • HT4914 when you have more than 25000 songs, what then?

    When you have over 25.000 songs on your Ex. HD. What t do then?

    Here is a really simple solution that I use for my Library of over 25,000.
    First of all, iMatch does not count "Voice Memo" media, so I had to make decisions on what songs I want to have available for all of my devices.
    What I did was cange the media setting to my least favorite songs in my library to "Voice Memo"
    I religiously "Rate" the songs in my Library. 5 are my favorites, then 4, then 3. Everything under 3, I really do not listen to.
    So I started with changing my 1 and 2 rated songs to "Voice Memo"
    - Select songs, Right Click and Select Get Info
    - Under Options Tab, go down to Media Kind and change from Music to Voice Memo. Hit Ok.
    The song file will still play in your local Library fine. These file will just not be uploaded to the Cloud.
    I also set up a Smart Playlist with the settings:
    Media Kind / Is Not / Voice Memo +
    Media Kind / Is / Music
    This allowed me to quickly see how many songs i would be uploading to the Cloud.
    If this doesn't get your # of songs down, then I started picking off Categories that I didn't want to upload. Like my library of Soundtracks or Jazz.
    Best of luck.

  • HT4064 how to do you stop the issue when you have to click several times on your ipad to get into anything?

    how to do you stop the issue when you have to click several times on your ipad to get into anything?

    I think you have enabled VoiceOver; turn off VoiceOver
    1. Press the Home button
    2. Tap Settings.
    3. Then double-tap Settings.
    4. Tap General.
    5. Then double-tap General.
    6. Use three fingers on the screen to scroll to Accessibility
    7. Tap Accessibility.
    8. Then double-tap Accessibility
    9. Tap VoiceOver
    10. Then double-tap VoiceOver.
    11. Tap "On" next to VoiceOver
    12. Then double-tap "On" to turn it off.

  • What app can you download that will allow wifi calling when you have no cell signal through the network?

    What app can you download that will allow wifi calling when you have no cell signal through the network?

    You might Give this App a Try..  I have not use this my-self but have Look through the Link see what you think..
    Talkatone free calls + texting - Android Apps on Google Play
    Here's some Extra Info I found through C|Net on the app you were asking about
    3 Android apps for Wi-Fi calling with Google Voice - CNET

  • When you do billing info do you get billed monthly or just when you purchase things

    when you do billing info do you get billed monthly or just when you purchase things

    It is no different from when you buy things using your credit card at a shop.  IF you go to the shop today and buy something it will appear on the next monthly credit card statement.  IF you buy nothing in th emonthly billing period then nothig appears on your card?  Have you never used a credit card before?  Are you for real?

  • When you have 1 itunes library.. and 2 ipods.. different names.. how can you share the same library???

    When you have 1 itunes library.. and 2 ipods.. different names.. how can you share the same library???  All of the songs that were put on there from a CD will sync, but the songs that were purchased.. "cannot be found"   How can we merge them?? or how can we share all songs.. purchased or not!

    When you have 1 itunes library.. and 2 ipods.. different names.. how can you share the same library???  All of the songs that were put on there from a CD will sync, but the songs that were purchased.. "cannot be found"   How can we merge them?? or how can we share all songs.. purchased or not!

  • How do I resolve this error message? The iPhoto library is on a locked volume.  Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library.

    How do I resolve this error message? The iPhoto library is on a locked volume.  Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library.

    Hi j,
    I don't know if this will work, but I'd try logging in to an admin account, going to your main library (not user library), opening it, opening Application Support, selecting iPhoto, hold down the command key and press i, click on the lock in the lower left, entering the password and making sure you have Read & Write privileges for System and Admin.

  • HT201359 When you have been charged twice for same item, how do you get your money back?

    When you have been charged twice for same item, how do you get your money back?

    Morning Domangere,
    Thanks for using Apple Support Communities.
    Following this article refund will be an option.
    For more information on this, take a look at this article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Best of luck,
    Mario

  • Just like you have a url for a page is there a url for a portlet

    just like you have a url for a page is there a url for a page portlet... so that you can change the content of a portlet on page to another page in the portal

    just like you have a url for a page is there a url for a page portlet... so that you can change the content of a portlet on page to another page in the portal

  • This message shows up when I try to access my auxiliary iPhone library: "The iPhoto library is on a locked volume. Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library."

    This message shows up when I try to access my auxiliary iPhone library: "The iPhoto library is on a locked volume. Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library."
    What did I do wrong?  I have been downloading all my photos into this same library since Janurary with no problems.

    What version of Mac OS X?
    Click the black Apple icon on the top left of the screen and select About This Mac. The next screen will show the information.

  • Bug: when you have two or more reminder pop-ups on BB10, you can't edit 2 or more of them because the second and beyond are lost...

    I notice that when you have two or more reminder pop-ups on BB10 (tasks, calendar, etc.), you can't edit 2 or more of these because the second and beyond get lost and will never pop-up again.  

    Hey JVanB,
    Thank you for your feedback.
    To better understand your issue, for example If you have two reminders and select 'View Event Details' on the 1st reminder,  does the 2st reminder popup before the Details of the1st reminder displays? 
    Thanks.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for

  • How can i use AME for the new OAF page.

    Dear all, I have developed a new OAF page and registered under Employee Self Service. How can i use AME for the approval process. Appreciate your ideas? zamora

  • Issues with writing html coding and how safari interprets it

    Hi, I have been having a frustrating 24 hours with my basically brand new iMac. I have just started a course in web design and just doing a basic html unit. When I put the following in Textedit it comes up very strangely. <!DOCTYPE html PUBLIC "-//W3

  • Restore ABAP side of dual stack

    Hi Been 4 years + since I did any work on I-series. After patch of BW 7.01 ABAP side SPS6 to 16  using SPAM I tried to use JSPM to patch Java side. System didn't allow this after patching JSPM to level 16 so was forced to use SUM. Note 1881524 sugges

  • 1.2.1 compressor

    i constantly get a update software requese "compressor 1.2.1" so i update and restart, then it pops up again. ***? can anyone help? i have an Early 2008 desktop. Leapord 10.5.

  • Some question regarding time evaluation

    Hello, I have two questions regarding time evaluation: 1. Is it possible (if yes, how) to still include a employee in time evaluation even if this employee is inactive (status P0000-STAT2 = 0). We need this in order to calculate weeks of not working