Only initiator zones with different targets

Possible to have a single identical HBA initiator according to the different areas on an SDM with different targets in each area? or an initiator can only log into the area under one?

Is below allowed on the MDS as well as the same vsan?

zone name VM005_S05_C1_TO_VNX5300_SPA0_SPA1_SPB0_SPB1 vsan 10
Member pwwn 20:01:b4:e1:0f:28:02:0 d init
! [VM005_S05_C1]
Member pwwn 50:06:01:60:3e:e0:2 target: f2
! [VNX5300_SPA0]
Member pwwn 50:06:01:61:3e:e0:2 target: f2
! [VNX5300_SPA1]
Member pwwn 50:06:01:68:3e:e0:2 target: f2
! [VNX5300_SPB0]
Member pwwn 50:06:01:69:3e:e0:2 target: f2
! [VNX5300_SPB1]

zone name VM005_S05_C1_TO_VNX5400_SPA2_SPB2 vsan 10
Member pwwn 20:01:b4:e1:0f:28:02:0 d init
! [VM005_S05_C1]
Member pwwn 50:06:01:62:36:e0:14:2d target
! [VNX5400_SPA2]
Member pwwn 50:06:01:6 target: 36:e0:14:2d
! [VNX5400_SPB2]

If you use device aliases? fix?

Do you use the improved zoning?

Maybe you should do a

"commit vsan 10.

and finally, you also need to enable the zonset!

BTW. you see error messages, while sticking to this list of 5300 areas?

SSM

Take a look at the "show running" and you see how areas and whole areas are configured and activated

Tags: Cisco DataCenter

Similar Questions

  • Return only the columns with different values.

    Hi all

    I am trying to solve a seemingly trivial problem but can't seem to get any clear answer anywhere in any forum. Consider a single table with 5 columns and only two lines:
    row_id           first_name         last_name        age            gender
    1                    John                  doe               27             M
    1                    Jane                  doe               27              F  
    Assume that there is no primary key or any other constraint. Also assume that there are only and only two lines of this table. So I need basically a query that, overall above lines, would return first name and sex, because they are only different columns in two lines, as well as their values. Even if I can get sort of column names that are different and that would be enough that I can easily access the values later. It is also important to remember that I may not know the names of the columns in the columns, so basically, somehow, I use user_tab_columns in the process.

    Any help appreciated.

    Published by: 894302 on May 1, 2013 10:35

    Hello

    894302 wrote:
    The exact release could be just a varchar variable that lists all the columns that have different values with each column name separated by commas. We'll call the query you want as a QUERY. So, if I do something like

    Select the REQUEST of double; Output should be: 'first_name, equality of the sexes. Is this possible?

    In this case:

    SELECT     RTRIM ( DECODE (a.row_id,     b.row_id,     NULL, 'row_id,')     ||
                    DECODE (a.first_name, b.first_name, NULL, 'first_name,') ||
              DECODE (a.last_name,  b.last_name,  NULL, 'last_name,')  ||
              DECODE (a.age,        b.age,          NULL, 'age,')      ||
              DECODE (a.gender,     b.gender,     NULL, 'gender,')
               , ','
               )          AS different_columns
    FROM     rhit_table_x  a
    JOIN     rhit_table_x  b  ON  a.ROWID     < b.ROWID
    ;
    

    Output:

    DIFFERENT_COLUMNS
    ---------------------------------------
    first_name,gender
    

    This assumes that you have really a table, then you can use ROWID to distinguish the lines, since there is no primary key.
    If this isn't the case, you first assign ROW_NUMBER in a subquery.

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • I bought a genuine product Adobe Creative Suite 6 Design Standard about 3 years ago. After the initial installation (with serial number) applications worked well (Photoshop, Illustrator, Acrobat, etc.). However, I could only use Acrobat to a fe

    I bought a genuine product Adobe Creative Suite 6 Design Standard about 3 years ago. After the initial installation (with serial number) applications worked well (Photoshop, Illustrator, Acrobat, etc.). However, I could only use Acrobat a few weeks before the software did not react more. After this time all pdf files can be manually opened with Adobe Reader, but not with Acrobat. Because Acrobat seems to be the default program to open pdf files, nothig happens if I double click on a pdf file, or if a pdf file to be generated from a site Web etc. At the beginning, I was able to reinstall Acrobat from the CD and it would work for a few weeks yet. This has been the case for the past three years. Now, even the resettlement option no longer works and the error message "Is not a real product from Adobe" is displayed during installation. As I said, all the other parts (Illustrator, Photoshop...) work fine and I don't have a product code, serial number etc. What could be the problem and how can I solve this problem? When I uninstall Acrobat, all PDFs open automatically via the Adobe Reader software. But I need more than just to read a PDF file. Help, please!

    Hi Andreas,

    Try the fix mentioned in the KB: https://helpx.adobe.com/creative-suite/kb/acrobat-failed-launch-30-days.html

    Kind regards
    Rave

  • Hi I would like th different creative cloud buy 2, only photoshop/lightroom one and the other with all pack.is it is possible because I saw that we can only install on 2 different computers at the same time

    Hi I would like th different creative cloud buy 2, only photoshop/lightroom one and the other with all pack.is it is possible because I saw that we can only install on 2 different computers at the same time

    Creative desktop cloud applications can be downloaded and installed on multiple computers, regardless of the operating system. However, the activation is limited to two machines per individual related to the composition, and you may not use the software on these devices simultaneously.

    You can also see:

    FAQ: Can I install Creative Cloud on several computers?

    You can either sign of Creative cloud on a computer to connect to another, or as you said, buy a membership second using an AdobeID different so that you can leave, signed at on 4 computers.

  • iSCSI initiator error - cannot add target

    I am currently using a MD3000i in a test environment.

    The installation is very simple:

    The MD3000i is directly connected to a Windows Server 2003 (x 64 Enterprise edition).

    The management software is completely installed on this server. Only one controller is used to manage the PowerVault (partially managed)

    All default settings are used. I have configure the system according to the guide online "Board installation and configuring iSCSI" found on the installation CD.

    I get an error when configuring the Mirosoft iSCSI initiator. As soon as I try to add a port for iSCSI (iSCSI initiator properties panel-> discovery-> target portals tab), I get the following error message:

    "invalid sendtargets response text was detected.

    After accepting this error, the port is added to the list, but will not appear in the tab target, it is therefore impossible to connect to this port. The port of host iSCSI on the table and the address source on the server IP responds to ping without problem.

    At this point, I am only able to connect to the MD3000i with the out of band management and cannot access the storage in any way.

    Any help would be greatly appreciated

    Robert


  • How to listen to a couple of times (with different names) table in another schema?

    Hello guys,.

    I replicate a table schema (SCH_1) (TAB_1) on the basis of data source (named DB_1) twice on the schema (SCH_2) on the basis of data target (DB_2) with two different names (TAB_1 and TAB_1_SHORT). TAB_1_SHORT on db target must be a subset (eg. WHERE STATUS = 1) of TAB_1!

    How to do? can someone help me?

    I tried to realize that in this way:

    (1) creation of 1 capture process with the rule 1 table on source db (without any rule of subset to capture all changes) for table TAB_1

    (2) creating a process of spreading with no rules

    (3) creation 1 apply the process with a rule in table for table TAB_1 without any subset_rule but with the transformation of the pattern of SCH_1 to SCH_2 (DBMS_STREAMS_ADM. RENAME_SCHEMA) = > it works correctly!

    (4) creating a subset_rule (WHERE STATUS = 1), a transformation of the pattern of SCH_1 to SCH_2 (DBMS_STREAMS_ADM. RENAME_SCHEMA) and a transformation of tablename from TAB_1 to TAB_1_SHORT (DBMS_STREAMS_ADM. RENAME_SCHEMA) for table TAB_1_SHORT = > does not work, no errors posted in dba_apply_error!

    in another chance, I tried to turn the table and the schemaname in the process of capture, with the effect that my first table TAB_1 would not be listened to again.

    I don't know what the problem is. I think it must be possible to publish a table for two different targettables in the same pattern on an another db, is not it?

    I hope that the greetings
    Flo

    Hello

    Adding a normal table rule and also a subset rule would not work because the rule would be evaluated only once in the set of positive rules. If the normal rule is evaluated first, then the subset rule and the rest of the rules would not be assessed at all that's why it would not work.

    This can be done using one of the following methods:

    Method 1:

    1 use the declarative transformation on the capture/apply and rename SCH_1 to SCH_2 scheme.
    2. now, on the site apply, define a DML for SCH_2.TAB_1 Manager
    3 al ' DML Handler, do the following:
         
    a. get the value of the STATUS column
    b. check if the value of STATUS = 1, if yes, then change the name of the object to TAB_1_SHORT and run the LCR.
    (c) another thing not to change the name of the object (leave it as it is, TAB_1) and run the LCR.
              
    Method 2:

    1. Add a DML for SCH_1.TAB_1 Manager
    2. in the DML handler perform:
         
    method of set_object_owner use of LCR$ _ROW_RECORD to rename the owner at the SCH_2
    b. get the value of the STATUS column
    c. check if the value of STATUS = 1, if yes, then change the name of the object to TAB_1_SHORT and run the LCR.
    (d) another thing not to change the name of the object (leave it as it is, TAB_1) and run the LCR.

    Please let me know if you need examples of code.

    Thank you
    Florent

  • Photos with different apple id: s

    Any way to sort photos taken with various apple id: s in photos for mac? I have three different iPhones that has been moved from parents to children. Is there anyway to sort images with different apple id: s? I heard that there is way to sort different (smart folder) with the model of phone, but this is not enough cause phones were used earlier by the parents. And I want to use only a single library of pictures, so the different IDs: s for mac is not the solution. It would be nice to get this functionality.

    You can use smart albums with a combination of constraints: the model of the iPhone and the date rank when the iPhone has been used by a person in particular. If the iPhone has been in use you make in the years 2012 and 2013 creates a smart album that will check for the ipHone and the date range.  Then announces a keyword "Photo by Me" of all the photos in this album. Do the same for the other ranges of iPhones and date and assign the photographer as a key word.

    If you keep marking new imports with a keyword of photographer then you can create smart albums for every photographer.

  • How to structure the DMA buffer for SMU 6341 DAQ card for analog output with different frequencies on each channel

    I use the outgoing/incoming analog DDK with the DAQ 6341 SMU map.

    The examples, for example aoex5, show a single timer (method outTimerHelper::loadUI), but the example shows the DMA loaded with same size of vector data.

    There is a comment in the outTimerHelper:call rogramUpdateCount, which implies that memory sizes different pad per channel can be used.

    (the comment is: switching between the sizes of the various buffers is not used)

    Nobody knows what should be the format the DMA buffer for data from multiple channels with different frequencies?

    For example, we want a0 with a sinusoid at 1 kHz and a1 with a sine wave of 1.5 Khz.  What looks like the DMA buffer?

    With the same frequency for each channel, the data are interleaved, for example (ao0 #0, ao1 #0; ao0 ao1 #1, #1,...), but when the frequencies for each channel is different, what the stamp looks like?

    Hello Kenstern,

    Data are always intertwined since each card has only a single timing for each subsystem engine.

    To AO, you must specify the number of samples that will be released to the AO. You also specify the number of channels. Because he didn't is that a single engine timing for AO, each AO will be channel will be updated at the same time to update clock tick. Data will be interlaced exactly as shown in the example because each channel AO needs output at each tick of the clock to update. The data itself can change depending on the frequency you want to copy.

    kenstern wrote:

    For example, we want a0 with a sinusoid at 1 kHz and a1 with a sine wave of 1.5 Khz.  What looks like the DMA buffer?

    With the same frequency for each channel, the data are interleaved, for example (ao0 #0, ao1 #0; ao0 ao1 #1, #1,...), but when the frequencies for each channel is different, what the stamp looks like?

    In your example, you must come with an update rate that works for the two waveforms (sine waves of 1 and 1.5 KHz). To get a good representation of a sine wave, you need to update more than 10 x faster than your fastest frequency... I would recommend x 100 if possible.

    Update frequency: 150 KHz

    Channels: 2

    Then create you stamps that include complete cycles of each wave you want to produce based on the frequency of update. These buffers must also be of the same size.

    Buffer 1: Contains data for the sine wave of 1 KHz, 300 points 2 cycles of sine wave

    Buffer 2: Contains data for the sine wave of 1.5 KHz, 300 points, 3 cycles of sine wave

    You can Interleave them as before. When the data are performed through the ADC, they are out different sine waves, even if the AO channels are updated at the same speed.

  • Deployment of a program to clients with different hardware

    Hi all

    I have a general problem with the customers with different hardware. I would appreciate any advice on the subject.

    For example, I have two clients with two different cameras. I wrote a module-oriented camera the camera parent object and children Camera1 and camera2, so that the same logic works for both cameras. I want to deploy the program to clients, but so he could work for two clients, I need to install the drivers of the two cameras at two customers. Is there a way to keep the object oriented and modular code without installing all the drivers of material possible to all customers?

    In the case of two cameras, this isn't a big deal, but my program is more complicated than that and it will interface with dozens of spectrometers, cameras and scanners. I don't want to install each client drivers for all configurations possible. Is there a way to get around this?

    Thank you

    Danielle

    Another alternative would be to use a plugin architecture for your specific items to the customer. Create a Setup program for your application and a camera specific driver for the plugin. Each plugin will be specific to a type of camera-specific and includes the appropriate drivers. Of course this requires your customers to use 2 installers but only the appropriate drivers will be installed. You might be able to pack as a single installer that runs the camera installation after the installation of the application program. Your actual installer would all compatible drivers, but the user will be prompted for which device they use.

  • Sharing typedefs and screws between two different targets in the same project

    Hello

    I am writing a distributed application that runs on a PC and a CompactRIO. There are a few data structures and functions of comfort (typedefs and screws) I want to share between them. What is the best way to do? A LVLIB is suited for this purpose?

    I currently somewhat anime items shared on the 'My Computer' target. However, when I change my code, I sometimes click on "synchronize with other instances of the application. In addition, the shared items appear on my cRIO target dependencies list. I prefer not to have this happen. is it possible to avoid these?

    Thank you!

    Actually, I just discovered I can "include explicitly" the same control/VI in different targets, and LabVIEW will not see it as a conflict.

  • Text prediction with different regional settings in Windows 7 - shows disabled in Korean

    prediction of title: original text with different regional settings in Windows 7

    Hello

    I have English as the main language and Korean as a language second.  Text prediction works very well with this configuration; However, if I change the regional settings (non-Unicode) in Korean, text prediction is disabled.

    There is no work around for this?

    Thank you.

    Michael

    Hello

    • Text prediction is only available in English, French, Italian, German and Spanish. To enable text prediction in a specific language, you must first install additional language files for that language. For more information, see install or change a display language.

    • Text prediction is not included in Windows 7 Home Basic Edition.

  • Working with different screens

    Hi all

    I work with different screens in my application.

    I have a screen with 4 tabs. Each tab to the click should show another screen on the device. But I want to open the instance of each form only once and then run these screens on the pile of on-screen display desired to carry forward and pushing others in the background.

    But the problem is that when I try to use pushScreen() for a screen that has already been posted once before, I get an error that says I'm trying to push a screen that is already displayed. But infact the screen isn't the active screen? How can I now do this instance of the form on the front?

    can someone tell me how can this be achieved?

    Thank you

    You can also use a system with a single screen containing your 4 tabs and a Manager.

    Instead of pushScreen you just replace the Manager with another, which contains everything you need to display.

  • Everything was fine until my Windows 10, lost the start feature, if I ever go back to Windows 7, in this process, I lost my Adobe Reader software, I tried about ten times with different versions and different locations, all with the same download error

    Please forgive me for not knowing how to use this forum, I am an old man and not good at computers, I called Adobe, they said it was my only hope!

    Sorry to repeat

    Everything was fine until my Windows 10, lost the start feature, so I had to go back to Windows 7, in this process, I lost my Adobe Reader software, I tried about ten times with different versions and different locations, all with the same error message that is download "the feature you are trying to use is on an unavailable network resource"... are looking for It seems that it does not find when I search there, and I no longer seem to have the AcroRead.msi... the most difficult file, I try, I get deeper and deeper into things I don't know... I am looking for a simple solution!

    When it gets to this point, it is probably better to start from scratch.

    First of all, download, install and run Adobe Reader cleaning tool to get rid of all remains little. Here is a link to the tool: Download Adobe Reader and Acrobat tool - Adobe Labs

    Then go to the following link to download the full installer for the reader.

    https://get.Adobe.com/reader/Enterprise/

  • Licenses that merge with different activation time

    Hello

    I want to merge two different activation time license. I found that there is a solution for this http://kb.vmware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 2006973

    But some question appears in this operation:

    1 time activation may differ by more than 30 days (a license has been purchased and activated in September and the other was purchased and active in June) type of licenses will be the same example - VMware vSphere Standard for 1 CPU with 1 year of support in version 5.5, how support for this looks?

    2. what type of license do need me for server with 2 processors with 8 cores and 192 GB of RAM, this license fits my needs? Is there a single license covering such a feature?

    On the HP site, I found only licnses for 1 CPU http://h30094.www3.hp.com/searchresults.aspx?store_id=11 & search_id = 67 & dept_id = 1328

    3. should I VMware vSphere Standard at least to connect to vCenter VMware?

    THX in advance for any replay :-)

    From vSphere 5.5 all basic and memory restrictions have been removed, and licenses are simply based on the number of processors physical Sockets (see http://kb.vmware.com/kb/2064117).

    What you must ensure is that the license key you want to assign has at least the capacity of the CPU. You can merge the license keys for the same version/edition even with different dates of SnS. However, this will not change SnS and end dates will always be displayed ion the MyVMware portal.

    vCenter Server is optional and licensed separately and is necessary if you want to manage a cluster host, or use additional features (for example, the cloning, live migration,...)

    André

Maybe you are looking for

  • Notes are not sync

    Notes will sync not to or from the Notes of MacBook 2.0 version (284) & iMac Notes Version 4.2 (549.10.1). notes of the iMac sync OK for all other devices. If anyone can help as to why I can't do that.

  • Problem with heat on initialize to top with Satellite M40

    Hello group, I have a question, when my laptop Satellite M40 warm up and I tried to restart the display changes to 2/3 and lock-up. Then I have to press the power button to stop the process and expect that the laptop cools a bit. I have them push the

  • How can I delete cookies in the yahoo toolbar

    My screen has changed the configuration with a new system. It allows to be a delete cookies in tools, but now I don't have a toolbutton.

  • Smart connect works only with headphones

    Smart connect app stopped working with headphones, tried to dump the data and also restored the phone to factory settings but still nothing with any pair of headphones, I installed the app soundabout and helmet all work with this, then ask yourself i

  • How to set the color depth

    try to set the color of amd's message color depth less than 24. How to set the highest color depth?