Does the NF980-G65 support RAID arrays over 2TB?

Looking to build a new machine fro Windows 7 (and switch to 64bit at the same time), and the NF980-G65 seems to be the closest board to my needs, just a quick question, does the onboard raid controller support raid arrays over 2TB in size? I had a look at the manual and it has a section on migrating an array to a size over 2TB which would suggest it does, but I would like some confirmation as to whether it does or not.

I've run into this problem with some raid cards when building servers for work, as they were unable to address raid arrays over 2TB and would not allow the creation of the array, I am wondering if the raid controller has the right level of LBA to create a 2TB+ array. I am aware of the need to use a GPT partition to have a partition of over 2TB.

Similar Messages

  • Does the NF980-G65 support the newest AMD Phenom II X6 1100T Thuban 3.3G

    According to the CPU support list...
    http://www.msi.com/product/mb/NF980-G65.html#/?div=CPUSupport
    ...it stops at 1090T.
    Is that list up to date?
    Thanks

     It should run just fine with that CPU if you have the latest BIOS. Others have said it"s OK.

  • Does the 790GX-G65 Support the new UEFI / Click-Bios

    Hey Everyone! Does anyone know if the MSI 790GX-G65 supports the new UEFI / Click BIOS? I presume that if it does, I could use the forum's bios flashing tool to update it

    Quote
    Does anyone know if the MSI 790GX-G65 supports the new UEFI / Click BIOS?
    No.
    The board uses old-style AMIBIOS8 coded BIOS releases.  There will be no UEFI (AMI Aptio coded) releases for this board.
    Still, for BIOS Updates, >>Use the MSI HQ Forum USB flasher<<.

  • Does the advanced queue support setting the pay load type as array/table?

    Does the advanced queue support setting the pay load type as array/table?
    if yes, how to write the enqueue script, I tried to write the following the script to enqueue, but failed, pls help to review it . Thanks...
    ------Create payload type
    create or replace TYPE "SIMPLEARRAY" AS VARRAY(99) OF VARCHAR(20);
    ------Create queue table
    BEGIN DBMS_AQADM.CREATE_QUEUE_TABLE(
    Queue_table => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_payload_type => 'LUWEIQIN.SIMPLEARRAY',
    storage_clause => 'PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 TABLESPACE USERS',
    Sort_list => 'ENQ_TIME',
    Compatible => '8.1.3');
    END;
    ------Create queue
    BEGIN DBMS_AQADM.CREATE_QUEUE(
    Queue_name => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_table => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_type => 0,
    Max_retries => 5,
    Retry_delay => 0,
    dependency_tracking => FALSE);
    END;
    -------Start queue
    BEGIN
    dbms_aqadm.start_queue(queue_name => 'LUWEIQIN.SIMPLEQUEUE', dequeue => TRUE, enqueue => TRUE);
    END;
    -------Enqueue
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    ------Get error
    Error starting at line 1 in command:
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    Error report:
    ORA-06550: line 17, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ENQUEUE'
    ORA-06550: line 17, column 3:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause: Usually a PL/SQL compilation error.
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    but when I use the following script to enqueue get error. Pls help to review. Thanks...
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    ------Get error
    Error starting at line 1 in command:
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    Error report:
    ORA-06550: line 17, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ENQUEUE'
    ORA-06550: line 17, column 3:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause: Usually a PL/SQL compilation error.
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Does the iPhone 5s support LTE Advanced?

    ihave iphone 5s but
    Does the iPhone 5s support LTE Advanced?

    Galadari wrote:
    Does the iPhone 5S support LTE Advanced
    I assume you mean Voice over LTE (VoLTE)? If so, I do not believe it does. It certainly doesn't with my carrier (Verizon).

  • How do i monitor the health of my Raid array?

    First, I want to thank Harm, Bill, and all the countless others who continue to give great advice on this forum.  My question is how to I monitor the health of my raid array and how to determine which disk is acting up.   I am using a 3-disk soft raid 0 off my motherboard (gigabyte ud3p).  Seems to work pretty well but occasionally has a hiccup in certain programs.  I wonder if it is a sign of an impending problem or if it is just because it is a soft raid.  I've tried several HD diagnostics (Crystal Disk Info, Active@, HD Tune, etc.) but aside from temperature, they don't give any info about the impending death of my raid 0.  I have the SMART feature turned on in bios.
    To premtively address the critics about the raid 0.  I only do about one video a week and do a backup every night.  So i figured it (and when) it crashes, i'll just lose a days work. The motherboard is suppose to do a raid 5 but it performed really poorly.  My system is configured with additional drives (SSD boot, Raid 0 scratch, and final video) as recommended.  Any advice would be appreciated.
    michael

    The problem with almost all raid controllers is that they do not support SMART. So that is out. With software raids you are even more limited.
    With hardware raid controllers you have web based interfaces that show some basic information, like this:
    but software raids do not. There are two ways to determine possible problems, at least that I know of:
    1. Use drive cages with LED's for the individual drives to show activity and inspect them visually.
    2. Use old-fashioned manual labour to feel vibrations, temperatures and hear clicks on individual drives.
    With only 3 drives in the raid, the chances of guessing correctly are 33.3% to start with and they only increase with manual inspection. A far easier job than in the case of 6 or more disks.
    Sorry I can not offer better suggestions.

  • Does the 6600GT-VTD128 support video capture?

    Hi,
    I recently purchased an MSI 6600GT-VTD128 video card.  The product information seems to suggest that the card has video input capabilities, and there is an adapter that plugs into the card that has a number of connections, one of which is labeled S-Video in.  However, I haven't been able to get any video capture to work.
    Does the card actually support this functionality?  If not, what are the video input connections for?  If so, is there some documentation as to how to set it up?  
    So far, I tried installing the video capture drivers that come with the card.  I checked the manual.  I checked the MSI web site FAQs.  And I searched the forums.
    Any help would be greatly appreciated.
    Thanks,
    Daniel

    Thanks Richard.  Yes I do have a breakout cable like that.  Actually, I described it in my original message.  So, I am guessing from your message that you believe that the card should have the capability to capture video.  
    In my original message, I asked if there was any documentation on setting up the card for video capture.  The manual does not describe the procedure, nor does the MSI web site.  
    There are drivers on the CD that claim to be for video capture, but they had no effect when I installed them.  In fact, there appears to be no way to tell whether the drivers were actually installed successfully.
    If anyone out there has successfully used this card for video capture, please let me know.

  • Does the cannon mx410 support ipad printing of notes from the notepad

    Does the cannon mx401 support iPad (Via wi-fi) printing from the notepad area?????
    I need help getting mine to operate..
    .thnx
    . Bea

    According to the link below that printer doesn't support Airprint.
    See requirements for AirPrint and printers that support AirPrint here:
    http://support.apple.com/kb/ht4356
    You may be able to print some content using a printing App from the App Store. See Print n Share, etc.

  • Does the macbook pro supports the logitech gamepad 510/710? I't doesn't recognize it

    Does the macbook pro supports the logitech gamepad 510/710? I't doesn't recognize it.
    Is for playing to the FIFA 2012 for Mac

    juliafrancine wrote:
    I've tried looking for the install cd for it but I can't find it, now I'm starting to wonder if it even had one.
    No.  10.7 never came one a disk.  Read this:
    Restoring iLife applications after Internet Restore of OS X Lion
    If you reinstall Lion on a new Mac that shipped with OS X Lion installed, on an erased or replaced hard drive, you can download iPhoto, iMovie, and GarageBand from the Mac App Store.
    After installation, start from Lion.
    Double-click the App Store icon in the dock.
    Enter your Apple ID and password.
    Click Purchases.
    If you haven't previously accepted your bundled iLife applications within the Mac App Store, you should see your iLife applications appear in the Accept portion of the screen. Click Accept.
    You may be asked for your Apple ID and password once again. Your iLife applications now move to the Purchased section. These applications are part of the software that came with your Lion based computer. Your account will not be charged for them. Click Install to compete installation of your applications.
    http://support.apple.com/kb/HT4718

  • Does the ME3400 switch support MDI/MDI-x autocross

    Does the ME3400 switch support MDI/MDI-x autocross? I recently experienced  a situation where when the switch was set to a fixed 100 Full duplex and the outboard device selected the wrong pair, they would never link.
    Is MDI/MDI-x only supported on auto-negotiation?

    “Thank you for your question.  This community is for Cisco Small Business products and your question is in reference to a Cisco Elite/Classic product.  Please post your question in the Cisco NetPro forums located here: http://forums.cisco.com/eforum/servlet/NetProf?page=main  This forum has subject matter experts on Cisco Elite/Classic products that may be able to answer your question.”
    - Switches ----> Network Infrastructure Forum http://forum.cisco.com/eforum/servlet/NetProf;jsessionid=E0EEC3D9CB4E5165ED16933737822748.SJ3A?page=Network_Infrastructure_discussion

  • HT6154 Does the iPhone 4s support Blue Tooth?

    Does the iPhone 4s support blue tooth?

    But not all Bluetooth profiles are supported. What is it you wish to do/connect to via Bluetooth?

  • HT204387 Does the IPhone 4S support NFC technology for Bluetooth pairing?

    Does the IPhone 4s support NFC technology for Bluetooth pairing.

    NFC and bluetooth are not the same thing.
    The iPhone (no currently existing model) does not have the hardware required for NFC.

  • Does the mozilla OS support sony xperia tipo(single sim)?

    Does the mozilla OS support sony xperia Tipo(single sim) ?
    If yes how would i be able to install it in my mobile phone and will it function properly and smoothly ?

    You can get start from here:
    *https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/Porting
    *https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/Preparing_for_your_first_B2G_build
    *https://wiki.mozilla.org/B2G/Porting
    btw, This is support forum, we dont handle this type of question, however you can ask porting related help at b2g mailing list or [https://www.mibbit.com/?server=irc.mozilla.org&channel=%23b2g irc channel].
    *[email protected]
    *irc://irc.mozilla.org/b2g

  • Does the new IPAD3 support the 3G in Egypt?

    does the new IPAD3 support the 3G in Egypt?

    The New iPad supports 3G world-wide wherever there is a local provider of iPad data plans and iPad micro sim cards. Read the specifications. http://www.apple.com/ipad/specs/
    So the question really is, are there 3G providers in Egypt who support the iPad?

  • Does the new ATV3 support DTS?

    Does the new ATV support DTS?

    Hi, sorry for delay in getting back, having checked the info of one of the files it shows the following.
    Apple lossless audio file
    29.2mb
    1253kbps
    44.100khz
    Stereo
    16 bit
    Encoded with itunes 11.1.0.126
    Doesnt mean much to me but hopefully it does to hou.

Maybe you are looking for

  • What is the latest firmware restore for all type of ipod ??

    *can anyone tell the latest firmware for all ipod types*

  • MacBook fan keeps turning on

    Whenever I open up my MacBook, the fan turns on. Many people say it turns on because of your antivirus and because iStat Menus causes it to turn on, but I don't have either, and the fan still turns on. What should I do?

  • External Jars in JSP Dynpage

    Hi, I have implemented reading an XML feed in a Java program using informa api. In NWDS, I created a Java Project. And as required added 3 externals jar files. I had to import the following: import de.nava.informa.core.ChannelIF; import de.nava.infor

  • How to view ipod touch calendar on my PC

    Apparently my calendar is backed up because I had to restore and it was restored. All I want to do is look at my ipod touch calendar on my computer. I don't want to sync it to Outlook, I just want to look at it and possibly edit it on my computer. Ca

  • Assistance with good programming

    Hey! I'm new to this Java game like most of the rest of us on here. I've just finished testing my first big project (calling methods etc.- all quite basic stuff) but I'm wondering if anyone out there could spare five minutes just to help me on the 'g