Have a R610 with PERC 6i, but only see options for RAID 0 or 1

My Google-fu fails me. I'm completely lost here. I just bought a R610 with the following:

(2) 2.4 GHz processors

(5) 146 GB 15K SAS drives

16 GB OF RAM

Looking at the configuration utility I see only the options to create RAID 0 or 1. I was hoping to do RAID 10. Looking at the BIOS I have a PERC 6i, who should be able to RAID 10. Help.

Thank you

Mike

Yes, you have the SAS 6/IR. None of these options you describe exist in the PERC. You will be limited in RAID 0 or 1.

Tags: Dell Servers

Similar Questions

  • I have been using the functionality of Firefox in which I could have multiple sets of tabs open, but only see the game I was working with. I have updated and now the functionality is Gone

    I have been using the functionality of Firefox in which I could have multiple sets of tabs open, but only see the game I was working with. I have updated and now the feature disappeared. I had a small icon on the top right of my toolbar. I used it all the time to keep windows separated for financial, plans to travel items, news, etc.. Has it been removed from Firefox?

    Hello

    The feature of tab groups is always present. You can try with the button right of the + after the last tab and Customize. If the icon is hidden behind the other, or if it is available inside the mini window customize, you can put it back. If the problem persists, you can also try of reset toolbars and controls: and start to make changes and restart in Safe Mode screen.

  • Where do deleted files? I have looked in the bin to recycle but only see a shortcut I created here. No files appear.

    Where do deleted files?  I have looked in the bin to recycle but only see a shortcut I created here.  No files appear.

    Did you do that?

    Please run the SFC system and say if she cannot fix corrupted files:

    http://support.Microsoft.com/kb/929833

  • I just changed my computer and I have a subscription with creative cloud but my account settings now say that I have not...

    I just changed my computer and I have a subscription with creative cloud but my online account settings now say I didn't... but I do pay by adobe lately, September 11... .so now my PhotoShop is now in test mode... I'm not sure that anyone here can solve this problem... but since I'm a member during the period of 90 days cat I don't see any other options...

    Hi Mike,.

    Please check the help below document:

    Applications creative Cloud back in test mode after an update until 2015 for CC

    Kind regards

    Sheena

  • The foreach loop to see the result in richTextBox1 but only see the first result of the query. ?

    I have the table names in the list box to check if the same tables has same columns. For example

    listBox3 is the name of the EMPLOYEE table that my request must verify if the EMPLOYEE table has different columns.

    This query working as for example: table Employee UserA and UserB has Employee table too. After comparing the time user Employee table I get the altar of statements about richTextBox1.

    Depends on my EMPLOYEE table, I guess only to see the result as below;

    ALTER table EMPLOYEE add DESCRIPTION VARCHAR2 (15);

    ALTER table EMPLOYEE add CITY VARCHAR2 (10);

    but only seeing:

    ALTER table EMPLOYEE add DESCRIPTION VARCHAR2 (15);

    foreach (string Items in listBox3.Items)
      
    {
      
    using (OracleCommand crtCommand = new OracleCommand(
    "with src as(select src.table_name src_table_name, src.column_name src_col_name, src.data_type src_data_type, src.data_length src_data_len, src.data_precision src_data_precision, src.data_scale src_data_scale, src.nullable src_nullable,decode(T.Constraint_Type,'P', 'Primary Key','U','Unique','') as src_cons from all_tab_columns src left join (select Cc.Column_Name,Uc.Constraint_Type from user_cons_columns cc, user_constraints uc where Cc.Constraint_Name = Uc.Constraint_Name and Cc.Table_Name = Uc.Table_Name) t on T.Column_Name = Src.Column_Name where table_name = '" + Items + "' and owner='" + txtSrcUserID.Text + "'), tgt as(select tgt.table_name tgt_table_name, tgt.column_name tgt_col_name, tgt.data_type tgt_data_type, tgt.data_length tgt_data_len, tgt.data_precision tgt_data_precision, tgt.data_scale tgt_data_scale, tgt.nullable tgt_nullable, decode(T.Constraint_Type,'P', 'Primary Key','U','Unique','') as tgt_cons from all_tab_columns tgt left join (select Cc.Column_Name,Uc.Constraint_Type from user_cons_columns cc, user_constraints uc where Cc.Constraint_Name = Uc.Constraint_Name and Cc.Table_Name = Uc.Table_Name) t on T.Column_Name = tgt.Column_Name where table_name = '"+Items+"' and owner='" + txtDesUserID.Text + "'), col_details as(select src.src_table_name, nvl(tgt.tgt_table_name, first_value(tgt_table_name) over(order by tgt_table_name nulls last)) tgt_table_name, src.src_col_name, src.src_data_type, src.src_data_len, src.src_data_precision, src.src_data_scale, src.src_nullable,src_cons, tgt.tgt_col_name, tgt.tgt_data_type, tgt.tgt_data_len, tgt.tgt_data_precision, tgt.tgt_data_scale, tgt.tgt_nullable,tgt_cons from src full outer join tgt on (src.src_col_name = tgt.tgt_col_name))select * from (select case when tgt_data_type != src_data_type or tgt_data_len != src_data_len or tgt_data_precision != src_data_precision or tgt_data_scale != src_data_scale or tgt_nullable != src_nullable then 'alter table ' || tgt_table_name || ' modify ' || tgt_col_name || ' ' || src_data_type || ' ' || case when src_data_type in ('DATE') then null else case when src_data_type in ('VARCHAR', 'VARCHAR2') then ' (' ||nvl(to_char(src_data_len), ' ') || ') 'else decode(nvl(src_data_precision, -1), -1, null, nvl(to_char(src_data_precision), ' ') || ', ' || nvl(to_char(src_data_scale), ' ') || ')') end end || case when tgt_nullable = 'Y' then ' null ' else ' not null ' end || tgt_cons when tgt_col_name is null then 'alter table ' || tgt_table_name || ' add ' || src_col_name || ' ' || ' ' || ' ' || src_data_type || ' ' || case when src_data_type in ('DATE') then null else case when src_data_type in ('VARCHAR', 'VARCHAR2')then '('|| nvl(to_char(src_data_len), ' ') || ') ' else decode(nvl(src_data_precision, -1), -1, null, nvl(to_char(src_data_precision), ' ') || ', ' || nvl(to_char(src_data_scale), ' ') || ')')end end || tgt_cons when src_col_name is null then 'alter table '|| tgt_table_name ||' drop '||tgt_col_name end alter_statement from col_details) where alter_statement is not null", conn1))
      
    {
      
    var result = crtCommand.ExecuteScalar();

      
    if (result != null)
      
    {
      richTextBox1
    .AppendText(Environment.NewLine);
      richTextBox1
    .AppendText(result.ToString() + ";");
      richTextBox1
    .AppendText(Environment.NewLine);
      
    }
      
    else
      
    {
      
    continue;
      
    }

      
    }  
      
    }


    This is the same query:


    with the CBC as

    (

    Select src.table_name src_table_name, src.column_name src_col_name, src.data_type src_data_type, src.data_length src_data_len, src.data_precision src_data_precision, src.data_scale src_data_scale,

    CBC. Nullable src_nullable, decode (T.Constraint_Type, 'P', 'Primary Key', 'U', 'Unique', ") as src_cons

    all_tab_columns CBC

    left join (select Cc.Column_Name, Uc.Constraint_Type

    of user_cons_columns cc, uc user_constraints

    where Cc.Constraint_Name = Uc.Constraint_Name

    and Cc.Table_Name = Uc.Table_Name) t

    on T.Column_Name = Src.Column_Name

    where table_name = ' EMPLOYEE worker ' and owner = "ERHAN"

    ),

    As TGT

    (

    Select tgt.table_name tgt_table_name, tgt.column_name tgt_col_name, tgt.data_type tgt_data_type, tgt.data_length tgt_data_len,

    TGT.data_precision tgt_data_precision, tgt.data_scale tgt_data_scale, tgt.nullable tgt_nullable,

    Decode (T.Constraint_Type, 'P', 'Primary Key', 'U', 'Unique', ") as tgt_cons

    from all_tab_columns tgt

    left join (select Cc.Column_Name, Uc.Constraint_Type

    of user_cons_columns cc, uc user_constraints

    where Cc.Constraint_Name = Uc.Constraint_Name

    and Cc.Table_Name = Uc.Table_Name) t

    on T.Column_Name = TGT. Column_Name

    where table_name = 'EMPLOYEE' and owner = "SARIGUL"

    ),

    col_details as

    (

    Select src.src_table_name, nvl (tgt.tgt_table_name, first_value (tgt_table_name) more (order of nulls last tgt_table_name)) tgt_table_name;

    SRC.src_col_name, src.src_data_type, src.src_data_len, src.src_data_precision, src.src_data_scale, src.src_nullable, src_cons,

    TGT.tgt_col_name, tgt.tgt_data_type, tgt.tgt_data_len, tgt.tgt_data_precision, tgt.tgt_data_scale, tgt.tgt_nullable, tgt_cons

    the CBC

    outer join full tgt

    on)

    SRC.src_col_name = tgt.tgt_col_name

    )

    )

    Select *.

    BeO

    Select the case sensitive option

    When tgt_data_type! = src_data_type or tgt_data_len! = src_data_len or tgt_data_precision! = src_data_precision or tgt_data_scale! = src_data_scale or tgt_nullable! = src_nullable

    then 'alter table ' | tgt_table_name | 'Edit ' | tgt_col_name | ' ' || src_data_type | ' ' ||

    -case when src_data_type null ('DATE') then

    on the other

    case

    When src_data_type in ('VARCHAR', 'VARCHAR2')

    then ' (' |) NVL (to_char (src_data_len), ' ') | ') '

    otherwise decode (nvl (src_data_precision-1),-1, null, nvl (to_char (src_data_precision), ' ') |) ', ' || NVL (to_char (src_data_scale), ' ') | ')')

    end

    end

    ||

    cases where tgt_nullable = 'Y' then 'null '.

    of another end 'not null '.

    || tgt_cons

    When tgt_col_name is null

    then 'alter table ' | tgt_table_name | 'Add ' | src_col_name | ' ' ||  ' ' || ' ' || src_data_type | ' ' ||

    -case when src_data_type null ('DATE') then

    on the other

    case

    When src_data_type in ('VARCHAR', 'VARCHAR2')

    then ' ('| nvl (to_char (src_data_len), ' ') |) ') '

    otherwise decode (nvl (src_data_precision-1),-1, null, nvl (to_char (src_data_precision), ' ') |) ', ' || NVL (to_char (src_data_scale), ' ') | ')')

    end

    end

    || tgt_cons

    When src_col_name is null

    then 'alter table' | tgt_table_name: ' drop '. tgt_col_name

    end alter_statement

    of col_details

    )

    where alter_statement is not null;


    After reading the post, I could not understand if you mean that the problem is with your query or the code displays the result on your UI.

    The query returns a correct result when it is run on SQL Prompt?

    If this is the case, then perhaps problem exists with your logic to assign variables. Maybe, you need a loop in the set of results rather that by assigning them once. Or maybe not, because I do not know what language you are using.

    var result = crtCommand.ExecuteScalar();
    
       if (result != null)
       {
      richTextBox1.AppendText(Environment.NewLine);
      richTextBox1.AppendText(result.ToString() + ";");
      richTextBox1.AppendText(Environment.NewLine);
       }
       else
       {
       continue;
       }
    

    If you say, there is problem with the query, it's a good place to ask your question, but you must provide the Table definitions that can be replicated.

    If the query works fine, then maybe consider posting this question at an appropriate forum (c#).

  • Currently, I have Photoshop CS5 with Adobe Bridge. The upgrade online for Photoshop CS6 includes upgrades to the bridge? I recently bought a camera Nikpn D810. The old version of the bridge does not recognize the D810 Camera Raw format. Thanks for any hel

    Currently, I have Photoshop CS5 with Adobe Bridge. The upgrade online for Photoshop CS6 includes upgrades to the bridge? I recently bought a camera Nikpn D810. The old version of the bridge does not recognize the D810 Camera Raw format. Thanks for any help.

    New digital camera sometimes means an upgrade of the software, as in this case.

    Camera Raw plugin | Supported devices

    Applications of camera Raw compatible Adobe

    First, the D810 is supported in camera Raw which is compatible with the CS6 and later versions 8.6.

    Options:

    1. Pay for upgrade to CS6
    2. Join the cloud to Adobe
    3. Download the free Adobe DNG converter, convert all the D810 Raw files to DNG, and then edit the DNG in CS5 helps Photoshop | Digital Negative (DNG)
  • Server Dell r610 with PERC 6 / i controller

    Hello

    M using dell r610, which is configured with PERC6 / i controller, problem is I want to know when I configured the RAID-0 and remove my disk only, fails to get the boot, how to solve this problem?

    Once again, I want to know:

    1. with the raid configuration are we able to expand the size of the disk (from 2 TB to 3 TB) without lossing data

    2 are we able to use this server with No.-raid because raid will be risky in the case of a disk failure and won't lose data...?

    ((1-Yes, you can, but ONLY if 1) your system is currently in UEFI boot mode and 2) you are not currently using a RAID 10 (or have several bays on the disks).

    2 n ° on PERC 6 does not support the RAID/JBOD. RAID is ONLY risky if the USER chooses a risky RAID level (RAID 0 should be used for specific reasons by experienced professionals).

    RAID 0 has NO fault tolerance.

  • How do you use even if you have CC?  I installed CS6, but I see NO way to launch yet.

    I am a new user of organization and I can't even launch so I can create a real mastery of DVD.  I need to create a bunch of them to give to children in school - so I need to be able to create a.

    What is going on?  I was told to install CS6, I did, but now I can't find any way to open again.  In fact, I see even a way to install it!

    Hello J,

    I got back yesterday on this question for my daughter.

    When it comes to install PP CC 2014 was an evaluation of the student version.  The

    Setup does not include options for CS6 in the evaluation copy.

    Given that my daughter needed to burn DVDs with menus it pretty clear because

    quickly, that she would need to get even.

    We bought an account upgraded, uninstalled and reinstalled

    all the software with a full license.  Unfortunately the entries in the

    graft has continued to block the installation of yet.  We have uninstalled,

    reinstalled again.  Finally, we have someone technical support

    (all of this took place over the weekend when the Support was not available)

    who has been able to find an archive bit older on the Adobe site.

    We downloaded the software on the hard disk (superior to 'on)

    request"through the cloud - each installation failure was about a 40 minute

    test by downloading and expanding) and with a lot of manual intervention

    for its part, has been able to 'force' Windows to recognize the good

    installation.  This prompted Add-ons correct to CS6 download.  We

    Manually download updates as well as the libraries as a result of s, but we had to

    Finally, after about 2 or 3 hours, got everything is configured.

    It seems like a unique, or at the very least, rare, situation.

    However, I agree with my daughter - there should be an option

    to manually install the products rather than go back like that.

    Doff of the CAP to the guy from Tech Support to find this one.  He has been

    pretty hairy.

  • Acrobat says that I have two downloads with my subscription, but when I go to another is that said I used both of mine already use. Help!

    So I have an Adobe Creative cloud subscription and I downloaded Adobe Acrobat Pro on my computer. Well, I learned that I can have two downloads make up Acrobat so I tried to download the software on my computer to co-workers. I went to do it, and then once he prompted me to you connect it says that both of my downloads have already been saved, and I have to disconnect them. Help, please! I can't log out of my computer it turns off everything, but I need to know where my other download went.

    Absolutely not... It's two downloads for YOU don't not to share with colleagues, employees, friends or family. Only for your own computers, not not to use at the same time.

  • Initialization of the options in the system dell poweredge r610 with perc 6 / i raid controller

    Hello Sir,

    I have a new question on dell power edge, actually I wanted to know this server works on a raid configuration only and for the purpose of the security of the data, we are able to use a flash drive to object is initialized (os ex: esxi, linux, windows) server as well as data will be SAS and OS record store will be separated into a flash drive?

    Please clear my doubt... Thank you

    Thanks for the reply.

    Yes we do, the real problem is I want to start my server with flash drive, I don't want to use the hard drive for OS, HARD drive for storage and the flash drive for OS.

  • I have a 150 GB hard drive, but only 30 GB is on C: and 120 GB is on D. How to access free space because I'm running out of space on C

    The order of 150Gb 120 GB is coming as a system d (Data), leaving only 30 GB system c which means that I am running out of space. Can I access or connect C to D to allow the hard drive to operate as a whole

    Go to run, type: diskmgmt.msc

    Msc, L.click on drive D:, go to actions, all, select 'Enable', close

    the msc. To add type of 3rd party software/programs, you need to uninstall

    first of all, then reinstall to D:

    In addition, music, video, photos go D: drive.

    To combine the two partitions, you'd need to boot from the cd to install xp to the menu

    Press r for recovery console, recovery, type: DiskPart in DiskPart, remove

    both partitions, create one, press the key type, ESC: EXIT cd restarts, format &

    Reinstall xp.

    3rd party software can combine the 2 with xp installed, try downloads.com

  • I have Outlook Express with 2 identities, but all emails are going to the 2nd identity. How to restore the original identity?

    A month ago I received an error message trying to download emails to my primary identity.

    "An unknown error has occurred. "Account: 'mail.optusnet.com.au', server: 'mail.optusnet.com.au', Protocol: POP3, Port: 110, secure (SSL): no, error number: 0x800C0133.
    However, all emails are going into my 2nd identity.
    How can I re - define these identities?
    A month ago I received an error message trying to download emails to my primary identity.
    "An unknown error has occurred. "Account: 'mail.optusnet.com.au', server: 'mail.optusnet.com.au', Protocol: POP3, Port: 110, secure (SSL): no, error number: 0x800C0133.
    However, all emails are going into my 2nd identity.
    How can I re - define these identities?
     
     
     
    1. The error message indicates a corrupt Inbox.
    2. Messages if even received any at least in the second ID, in tools | Accounts, you also have the first account ID listed. First fix the Inbox.
     
     
    Error number: 0x800C0133 = a corrupt Inbox.
     
    Move any message you want to save to a local folder that you create. Then, remove the problem of Inbox as follows.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder options | View.
     
    With OE closed, find the box of Inbox.dbx and delete it. Another will be created automatically when you open OE.
     
     
    To avoid this in the future:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the processors and causes a multitude of problems such as time-outs and account setting changes. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3
  • just installed cloud print on my mobile. works very well with my 5510 but only print black and white.

    Anyone know why I can only print in black and white on my photosmart 5510 when you use cloudprint of

    My HTC desire hd. ?

    Hi brianmadmidge,

    Here's what you need to do to change the settings for printing for Google Cloud Print:

    1. Go to https://www.google.com/cloudprint/learn/ and click on "Try it now" (you may be prompted to sign in if so, sign, then click the link again.)
    2. A pop-up will appear with your list of printers.
    3. Select a printer.
    4. Click on options.  Grey_K will be black ink only, Grey_CMY will be high quality gray and color will be full color.
  • Have P6860FX gateway with the camera, but cant fint any to actavate it nothing in the programs etc.

    I see nothing installed on starting camera etc.

    Hello

    If below does not work you need to involve support technique Gateway and check with their online
    documentation and forums (if any).

    You will probably need to reload the drivers of the device and any camera control software.

    Login as an administrator.

    Double-click Control Panel / Device Manager - Imaging - writing down of the brand and model of camera.
    on this subject and on the tab of the driver is version. Now, click on update drivers (who are unable to do anything as MS
    is far behind the pilots of certification). RIGHT click on the camera - UNINSTALL - REBOOT - it
    will update the driver stack.

    Now, go to the system manufacturer's website and download the latest driver for the camera and the other related camera
    software (if not more recent get the same).

    Download - SAVE - go to them and RIGHT CLICK - RUN AS ADMIN - reboot after each driver.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    Then let windows updates on however prevent loading of drivers who are often older than the
    those that you have installed. If updates suggests a pilot and then HIDE it and watch manually to see if their
    really is a more recent version (at the time system manufacturer and the sites of the manufacturer of the device).

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • I have a HDD with Win 7, but plan on building a new PC. Is there a way to use this HARD drive to get an upgrade, or do I need a new OEM?

    I am trying to decide between getting Zorin OS or Windows 8, but it feels like a bit of a RIP-OFF than a duty pay $70 more for the System Builder version.  If I transfer this hard drive to a new computer, would I be able to use the upgrade?  Is to use an upgrade from the old Windows 7 PC to a new one without OS anyway?

    I am trying to decide between getting Zorin OS or Windows 8, but it feels like a bit of a RIP-OFF than a duty pay $70 more for the System Builder version.  If I transfer this hard drive to a new computer, would I be able to use the upgrade?  Is to use an upgrade from the old Windows 7 PC to a new one without OS anyway?

    The OEM of Windows 7 versions are identical to the versions commercial full license with the following exception:

    -OEM versions don't offer any free direct support from Microsoft technical support Microsoft

    -OEM Licenses are tied to the computer first you install and activate it on

    -OEM versions allow all hardware upgrades except for an upgrade to a different model motherboard

    -OEM versions does not move directly from an older Windows operating system

    What is OEM software? :

    http://support.Microsoft.com/GP/oemsupport_1/en-GB

    Licensing FAQ:

    http://www.Microsoft.com/OEM/en/licensing/sblicensing/pages/licensing_faq.aspx

    You will need to invest in a new license, as Windows 8 OEM System Builder License shall exercise the rights of transfer, its quite a good deal.

    There is no full retail version of Windows 8. If you need a full version, you will need to purchase the Pro OEM Windows 8 of new eggs. To do this, install an own custom.

    Windows 8 Pro
    64-bit (OEM)

    Windows 8 Pro
    32-bit (OEM)

    Windows 8
    64-bit (OEM)

    Windows 8
    32-bit (OEM)

Maybe you are looking for

  • Satellite U400 and Vista - Apple iTunes installed error message

    The Toshiba Satellite U400-157 equipped of Windows Vista is running in many errors. The last instance during the installation of the software Apple itunes 10.5. On an initial installation with the 10.4.1.10 present. He gave the itunes error has an in

  • Where the toolbar is on iTunes 12.3.2?

    Where is preferences and toolbar gone?   I want to transfer items purchased on my windows laptop and have no idea how to proceed.

  • Quick question - Message of Introduction of the App

    Hello What can I do so that the introductory message that appears when you open an application for the first time, to display again, after that an app has been opened? Example: (sorry for the language)

  • How to search the Forums

    Hello There are thousands of posts on the forums, covering a variety of topics.  Often, you can find the answers you are looking for, by searching just what was posted in the past. This video gives some tips and tricks that can help you find the answ

  • sending video attachments

    I want to send a dvd as an attachment to an e-mail, but the file is too large. How can I send it?