Can I create vhba of 8GB speed with the card M81KR?

Hi,
Please I need your help to know if I can create vhbas of 8GB speed with mezzanine card M81KR.
Thanks,

Hi Padranas,
Thank you for your response.
I am confusing about it......
To understand what you said. For example:
My UCS environment is: Chassis 5108 + 3 Blades B200M2 + M81KR Mezzanine card + 2104xp FEX + 6124xp FI .
We have 2 SAN switch brocade of 4GB speed by FC port connecting to the UCS FI and the Blade server has the service profile configure to use vhba of 4GB speed, I cannot change this configurations. We want to replace the Brocade SAN swtich by 2 new MDS 9148 of 8GB speed by FC port.
Can I be able to reconfigure the vhbas on my environment UCS to work with FC8GB replacing the Brocade switch to MDS?.
Our goal is improve the SAN speed from FC 4GB to FC 8GB.
We have a EMC stroage that support FC 8GB, but it is running to 4GB, because of Brocade SAN switch.
Thanks for your time.

Similar Messages

  • Can I create a lot of instance with the same name?

    I have, for a project in my studies, to create a map for an adventure game. I must create monsters on this map. For this I use a class that I called Creature. In my class Map i have to initialise the monsters but I
    choose their quantity with Math.random() so I don't know how much the map will contain. If in a loop I do: Creature monster = new Creature(); will I have different instances with the same name(I doubt)? Will I have one monster re-created in each iteration of the loop? How can I do to have different monsters in different places (my map is a matrix 2x2)?

    You would have many Creature references made, but only one variable to hold them, and it would go out of scope outside your loop. You could create a Creature array or use a List (both defined outside your loop) - as
    // array
    int numCreatures = randomGeneratedCreatureQuantity();
    Creature[] monsters = new Creature[numCreatures];
    for (int j = 0; j < numCreatures; j++) {
        monsters[j] = new Creature();
    // Or a list
    int numCreatures = randomGeneratedCreatureQuantity();
    ArrayList monsters = new ArrayList();
    for (int j = 0; j < numCreatures; j++) {
        monsters.add(new Creature());
    }Good luck
    Lee

  • Re: Can't create application project using libraries with the SunStudio Tool C.

    If function "test" is called from a module written in a different language, you might be seeing a difference in the external (linker) name created for the function by different languages.
    To mix C, C++ and Fortran, follow the rules in the Fortran Programming Guide, chapter 11 "C-Fortran Interface", for calling functions written in C, or for creating subroutines and functions to be called from C.
    In C++ code, declare or define the function as extern "C". Then the external name of the function will be spelled the same in all three languages.
    Example, where test() is written in Fortran and called from C++:
    f1.f
    SUBROUTINE test
    BIND(C) test
    f2.cc
    extern "C" void test()
    int main()
        test();
    }In addition, don't forget you need to add the option -xlang=f90 or -xlang=f95 to the CC command that links the final program.
    Edited by: clamage45 on Apr 16, 2009 11:09 AM

    sorry my fault, the subprojects were still configured to GNU in the "Tool Collection" in the output I posted.
    i now opened each subproject and made sure it is set to SunStudio just like my main project, but I still have the same error. here is my output:
    Running "/home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug clean" in /home/felix/SunStudioProjects/SubProjects_Example/main
    dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .clean-conf
    cd ../hello1lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug clean
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .clean-conf
    ariel --> 1 job
    rm -f -r build/Debug
    rm -f dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    CCadmin -clean
    cd ../hello2lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug clean
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .clean-conf
    ariel --> 1 job
    rm -f -r build/Debug
    rm -f dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    CCadmin -clean
    cd ../hello3lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug clean
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .clean-conf
    ariel --> 1 job
    rm -f -r build/Debug
    rm -f dist/Debug/SunStudio-Linux-x86/libhello3lib.so
    CCadmin -clean
    cd ../hello4lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug clean
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .clean-conf
    ariel --> 1 job
    rm -f -r build/Debug
    rm -f dist/Debug/SunStudio-Linux-x86/libhello4lib.so
    CCadmin -clean
    ariel --> 1 job
    rm -f -r build/Debug
    rm -f dist/Debug/SunStudio-Linux-x86/main
    CCadmin -clean
    Clean successful. Exit value 0.
    Running "/home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug" in /home/felix/SunStudioProjects/SubProjects_Example/main
    dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf
    cd ../hello1lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    ariel --> 1 job
    mkdir -p build/Debug/SunStudio-Linux-x86
    CC -c -g -o build/Debug/SunStudio-Linux-x86/hello1.o hello1.cc
    ariel --> Job output
    mkdir -p build/Debug/SunStudio-Linux-x86
    CC -c -g -o build/Debug/SunStudio-Linux-x86/hello1.o hello1.cc
    ariel --> 1 job
    mkdir -p dist/Debug/SunStudio-Linux-x86
    rm -f dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    ar rv dist/Debug/SunStudio-Linux-x86/libhello1lib.a build/Debug/SunStudio-Linux-x86/hello1.o
    ranlib dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    ariel --> Job output
    mkdir -p dist/Debug/SunStudio-Linux-x86
    rm -f dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    ar rv dist/Debug/SunStudio-Linux-x86/libhello1lib.a build/Debug/SunStudio-Linux-x86/hello1.o
    ar: creating dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    a - build/Debug/SunStudio-Linux-x86/hello1.o
    ranlib dist/Debug/SunStudio-Linux-x86/libhello1lib.a
    cd ../hello2lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug
    ariel --> 1 job
    ariel --> 2 jobs
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf
    /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f nbproject/Makefile-Debug.mk dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    ariel --> 1 job
    mkdir -p build/Debug/SunStudio-Linux-x86
    CC -c -g -o build/Debug/SunStudio-Linux-x86/hello2.o hello2.cc
    ariel --> Job output
    mkdir -p build/Debug/SunStudio-Linux-x86
    CC -c -g -o build/Debug/SunStudio-Linux-x86/hello2.o hello2.cc
    ariel --> 1 job
    mkdir -p dist/Debug/SunStudio-Linux-x86
    rm -f dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    ar rv dist/Debug/SunStudio-Linux-x86/libhello2lib.a build/Debug/SunStudio-Linux-x86/hello2.o
    ranlib dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    ariel --> Job output
    mkdir -p dist/Debug/SunStudio-Linux-x86
    rm -f dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    ar rv dist/Debug/SunStudio-Linux-x86/libhello2lib.a build/Debug/SunStudio-Linux-x86/hello2.o
    ar: creating dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    a - build/Debug/SunStudio-Linux-x86/hello2.o
    ranlib dist/Debug/SunStudio-Linux-x86/libhello2lib.a
    cd ../hello3lib && /home/felix/SunStudioExpress/sunstudioceres/bin/dmake -f Makefile CONF=Debug
    (...)

  • I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    Welcome to the Apple Community.
    Click on your account name in the top right corner of the iTunes store in the iTunes application on your computer, enter your password and click the "view account" button. Navigate to the Apple ID summary where you have the option to "change country or region".
    In order to change your location, you will need a credit card registered to an address in the location you are trying to change to.
    You cannot change your location if you have credit on your account, if you are unable to spend your credit and leave a balance of zero, contact Apple, which you can do through iTunes Store Support.

  • Can i create additional apple id's using the same email address for using multiple products with iCloud?

    can i create additional apple id's using the same email address for using multiple products with iCloud?

    Hi Anne,
    I'm pretty sure different eMail addies are needed for different Apple IDs.

  • How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?

    How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?
    Several times in the last year, I've gotten a message that Time Machine needs to completely redo my backup. Using the wireless connection, this takes almost two days. Is there a way to do the backup with ethernet and then switch back to wireless? Thanks.

    May I know what is needed to make sure the MacBook is able to see Time Capsule on ethernet?
    Connect an Ethernet cable from one of the LAN <-> ports on the 2Wire gateway to the WAN port (circle of dots icon) on the Time Capsule.
    If AirPort Utility cannot "see" the Time Capsule now, you will need to perform a "hard reset" by holding in the reset button for 7-8 seconds or so and then reconfigure the Time Capsule. You can use the same Time Capsule name and password, etc. as before.
    Configure the Time Capsule to "Create a wireless network" and select the Bridge Mode option when it appears during the setup using AirPort Utility.
    Once the Time Capsule is configured, restart the entire network again. Power down everything, start the 2Wire first and then start each other device after that one at a time about a minute apart.
    Now you can connect your Mac directly to one of the LAN <-> ports on the Time Capsule for the backup using another Ethernet cable. In general, about 20-25 GB per hour will transfer.
    The Time Capsule will broadcast a much faster wireless network than the 2Wire can provide, so you might want to leave the setup "as is" for awhile after the first backup is complete. If you decide to use the Time Capsule as your main wireless access point, you would want to turn the wireless off on the 2Wire since two wireless networks in close proximity can create interference problems.
    Or, if you want to use the wireless on the 2Wire, you could turn off the wireless on the Time Capsule. Then backups will occur over the 2Wire wireless, or over Ethernet.
    I don't really recommend the "Join a wireless network" setting on the Time Capsule for most users, but you could go back to that setup as well if you want after the first backup is complete.

  • Hi,  My IMac Superdrive has gone bust and i need to re-install Adobe CS5.5 design premium middle east version.   I have the original version DVD with me.   But i am unable to install.   Can i create an USB installation drive from the DVD or can you please

    Hi,  My IMac Superdrive has gone bust and i need to re-install Adobe CS5.5 design premium middle east version.   I have the original version DVD with me.   But i am unable to install.   Can i create an USB installation drive from the DVD or can you please send me a link to download the Middle east version of Adobe CS 5.5 design premium.   After downloading i can enter the product key which i had bought.  appreciate if anybody can offer a solution urgently.   All my jobs are held up. thanks

    Download CS5.5 products
    Mylenium

  • I created a web page in Adobe Illustrator and I can not seem to load it properly with the hyperlinks

    I created a web page in Adobe Illustrator and I can not seem to load it properly with the hyperlinks. Is there a certain extension I should use? HELP!!

    Tiger,
    Have you sliced the images, converted your design into HTML/CSS and tried to click the links?
    Peter

  • Can I create a website like Twitter with Creative Cloud?

    Can I create a website like Twitter with Creative Cloud?

    Start with jQuery Calculation plugin.   Tweak values as required.
    http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • We can't add a decimal number column with the create table forms

    In the version 4, we can't add a decimal number column with the create table forms.

    In the GUI, I found the following column (I translate from french to english): PK, Name, Data_type, lenght, not null, default, comments.
    In the lenght field, if I enter 9,3 to have a NUMBER(9,3), I have a message saying that the number must be an integer.

  • HT2534 I just create a new ID, but after verified my email add, I still can't use my new ID neither with credit card nor none. I just stuck at review my account step, please advise.

    I just create a new ID, but after verified my email add, I still can't use my new ID neither with credit card nor none. I just stuck at review my account step, please advise.

    What do you mean 'give me an example please' ? And 'dont have use a credit card' ?
    Unless you follow the instructions on this page when creating a new account : http://support.apple.com/kb/HT2534
    then you will need to enter credit card details before the account can be used in the store.
    If you don't have a credit card then you will need to create a new account, but this time follow the instructions on that HT2534 page when creating it. If you want to use the same email address then you will need to replace it on that account first e.g. via the Store > View Account menu option on your computer's iTunes, http://appleid.apple.com, or by tapping on it in Settings > iTunes & App Store on your phone.

  • SharePoint Designer 2013 (2010 Platform Workflow) - How can I create a new list item with a SPECIFIC content type?

    In SharePoint 2010 I created workflows that used the 'Create list Item' Action, which then set the Content Type ID (so I could create documents of various types in a document library). 
    We just switched to the SharePoint 2013 platform, and now the drop down for Content Type ID is blank in all of the workflows that are still using the SharePoint 2010 platform.  Is there any way to create a list item with specific content
    type?  Even if I could just input a string into that field instead of using this blank drop-down.  Please help! 

    Hi Sarah,
    According to your description, my understanding is that you cannot create a new list item with a specific content type using SharePoint 2010 Platform Workflow.
    I tested the same scenario in my environment, and the Create List Item worked fine with the specific content type.
    How did you create the content type?
    Please check if the content type is added to the list/library the workflow associated with.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Error message "The operation can't be completed because an item with the name .DS_Store already exists"

    Major headaches with copying files and folders between drives. I constantly (and I mean constantly) have to resort to copying files across in small batches (fewer than 10 works best) because anytime I try to copy lots of files and folders from my mac to an external hard drive (or from one external HD to a second external HD), I ALWAYS get the error message  "The operation can't be completed because an item with the name .DS_Store already exists".
    The files and folders are all Mac-generated, so hint or trace of foreign OSs in the mix.
    All file types are susceptible
    the HDs are all Mac OS X formatted, no foreign file formats involved
    the HDs are all journal-enabled, OS X extended formats
    have looked on here for previous posts, past suggestion was to disable creation of DS_Store files - not really a solution and realistically, defeats the purpose of their creation
    any ideas anyone?
    would appreciate any thoughts or sugestions, this has got me beat
    the context is that I have a lot of image files that I am copying (trying to...) new external 3TB drives for backup and the job appears endless if I have to do this in batches of 10 or so..!
    many thanks for any suggestions

    This is definitively a nuisance. When copying large amounts of files between volumes  try opening a terminal window and use use ditto. You need to type the directory paths of the source and the destination volume. When it starts ditto just coupes and optionally overwrites anything on the destination. You can get a verbose mode where it lists all activities.
    gunnars-mac-mini-i7:Volumes gunnar$ man ditto
    NAME
         ditto -- copy directory hierarchies, create and extract archives
    SYNOPSIS
         ditto [-v] [-V] [-X] [<options>] src ... dst_directory
         ditto [-v] [-V] [<options>] src_file dst_file
         ditto -c [-z | -j | -k] [-v] [-V] [-X] [<options>] src dst_archive
         ditto -x [-z | -j | -k] [-v] [-V] [<options>] src_archive ... dst_directory
         ditto -h | --help

  • Can i create more than one library on the same computer?

    Can I create more than one library on the same computer?  Just got an ipod for my wife but didn't want her to have to use my library to sync to, so I thought I created another library for her.  When I deleted my albums from her library the disappeared from mine. (I think?)

    pajagsfan wrote:
    Can I create more than one library on the same computer?  Just got an ipod for my wife but didn't want her to have to use my library to sync to, so I thought I created another library for her.  When I deleted my albums from her library the disappeared from mine. (I think?)
    I know it's Valentine's Day, but before you get your wife fixed up the first thing you need to do is recover the deleted albums for your own library.  See if the files are elsewhere on your hard drive, or in the Recycle Bin.  When you find them, get them back into your own library.  Now you are ready to help your wife.
    As noted above, you can have two libraries in one Windows user account via the Shift-Start approach, but if you both use your libraries regularly, that becomes annoying quickly.  It is better to set her up with her own Windows user account. She can have her own iTunes library there.
    Get a copy of your entire iTunes folder to start her off.  She can delete stuff she doesn't want without messing you up.

  • Can we connect from Portal to MaxDB with the trial version of SAPNetWeaver?

    I’ve installed SAP NetWeaver Developer Workplace SR2 (trial version) with the following components:
    •     SAP Web Application Server Java 7.00 (J2EE Engine)
    •     MaxDB 7.6.00.34 database + Database Manager and SQL Studio
    •     SAP Enterprise Portal
    •     SAP Content Management and Collaboration
    •     Adobe Document Services
    •     BI SDK
    •     Visual Composer
    •     Composite Application Framework (CAF)
    Now, I created new TEST database in MaxDB (user: DBADMIN, pass: abcd).
    I want to connect from the Portal to the TEST Database, so I follow the steps described in the documents (How To Configured BI JDBC Connector, ….)
    - I log on Visual Administrator, create BI JDBC Connector, create new DataSource.
    Now, I can get the Data from TEST Database.
    - I log on Portal and create new BI JDBC System,
    + Driver: com.sap.dbtech.jdbc.DriverSapDB,
    + Connection URL: jdbc:sapdb://sapep/test
    - Then, I create system alias, map user with the user in Test Database (User: DBADMIN. Pass: ABCD)
    But when testing the connection, I’ve an error:
    <b>Connection failed. Make sure user mapping is set correctly and all connection properties are correct.</b>
    When I test the connection by the link:
    http://sapep:50000/TestJDBC_Web/TestJDBCPage.jsp
    I’ve an error:
    <b>com.sap.ip.bi.sdk.exception.BIConnectionFailedException: Cannot open the connection
    Exception id: [0008C72B8B0C00C60000006F0000114000042C18596CD779]</b>
    Could you please show me how to resolved this problem ?
    I don’t know if it is caused by the trial version ?
    Thank you very much.

    Hi Tweety,
    I assume that you have create the driver with the required .jar files.
    supose its name is MAX_DB
    After that go to "Connector Container" in visual admin. To create a new connector,
    select the connector SDK_JDBC and click the clone button to create a new BI JDBC connector and enter a name for the connector eg., SDK_MAXDB
    Selct the recently created connector and choose the resource Adapter tab. click the add button to assiciate addtional resources the Connector
    To add resource, enter the name as "library:MAX_DB".save the changes and restart the server.
    Now in the portal there is a property "ConnectionFactory" set this to "SDK_MAXDB".
    Now u have said that u have set the values for Driver and Url as
    + Driver: com.sap.dbtech.jdbc.DriverSapDB,
    + Connection URL: jdbc:sapdb://sapep/test
    the value for driver is correct but the value for connection URL is wrong.
    Connection URL:  jdbc:sapdb://<Machine_name>:<Port>/<Databse_name>
    Now i dont what is the port no for MaxDB. as for SQL its 1433, for oracle it is 1521, for netezza it is 5480. U can get it from ur system adm or from net.
    As u have not mentioned the port thats u r facing the problem.
    Regards
    Paresh

Maybe you are looking for

  • No reflection of cost in Monthly consumption oder

    Hi friends, we are *settling Breakdown order of equipments to the monthly consumption order* of respective equiment. but the cost of the breakdown order is not reflecting into the monthly consumption order.I have checked orders in the back date.Some

  • Setting up a new iPhone 4

    I have just had delivered a new iPhone from Apple. My existing iPhone 4 (on O2) has been fully backed up onto iTunes on my iMac. Is there a easy to follow tutorial on making the transition from my old to new iPhone, including when to put in my O2 sim

  • InDesign CS5 Crashes when packaging

    I am repeatedly getting the spinning rainbow with InDesign "not responding" when I try to package files for printing. Yes, they are fairly large, but CS4 handled files like this with absolutely no problem. I have checked the fonts, even purchasing a

  • Unable to purchase in-app products on modern war

    made de one previous purchase but now it pops up with error stating to return to iTunes support

  • My history function of safari stopped working.

    my history function of safari stopped working since when I tried to turn on wifi in johnlewis store this afternoon. last 2dayes of history has been removed and the bars which you can see on top and bottom of the screen when you use Internet turn to b