How to check the flogi for NPIV virtual wwpns

I have enabled NPIV on the MDS 9513 director,  I have questions how does virtual wwpns log into the switch port,  ?
Does "show flogi database" list the virtual wwpns? And what will be the port mode ? NP ?

We use the following script for this:
select d.owner
, d.table_name
, d.blocks * p.value / 1024 / 1024 hwm_mb
, d.num_rows * avg_row_len / 1024 / 1024 rows_length_mb
, decode ( 100
- 100
/ ( (d.blocks * p.value)
/ decode ((d.num_rows * avg_row_len)
, 0, d.blocks * p.value
, (d.num_rows * avg_row_len)))
, 0, 100
, 100
- 100
/ ( (d.blocks * p.value)
/ decode ((d.num_rows * avg_row_len)
, 0, d.blocks * p.value
, (d.num_rows * avg_row_len)))) percentage_waisted
, ((d.blocks * p.value / 1024 / 1024) / 100)
* (decode ( 100
- 100
/ ( (d.blocks * p.value)
/ decode ((d.num_rows * avg_row_len)
, 0, d.blocks * p.value
, (d.num_rows * avg_row_len)))
, 0, 100
, 100
- 100
/ ( (d.blocks * p.value)
/ decode ((d.num_rows * avg_row_len)
, 0, d.blocks * p.value
, (d.num_rows * avg_row_len))))) mb_waisted
, decode (to_char (num_rows), '0', '!! ' || num_rows || ' !!!', to_char (num_rows))
records
from dba_tables d
, v$parameter p
where p.name = 'db_block_size'
and d.blocks > 1 --> no sense in checking empty tables with no blocks allocated
and table_name like upper ('&table_name');
Please note the usage of the v$parameter table. The executing user must have SELECT rights on this view

Similar Messages

  • How to check the DPI for images on pages

    hi,
            I want to check the DPI for images programatically, is there any function available in acrobat SDK,
            If not what other option we have to check the DPI for images programatically.
    Thank you,

    You don't mention which parts of the SDK, but you can use the Preflight feature of Acrobat via either JavaScript or C/C++ (plugin) to generate a report of images in a document and their information (including dpi).
    You can also write a plugin to iterate over each image individually and get its properties.

  • How to check the approver for PR release strategy?

    Hi Expert!
    I have a PR created with value of USD13 000(approx GBP 8500). This PR should go to Manager01 for approval because Manager01 limit is until GBP10 000. But however the PR is NOTgoing for Manager01 queue, it was going under Manager02 queue for approval and Manager02 has limit of GBP20 000K. Why is this happen? Where can i check for approval limit for Manager01 and Manager02?? Please help me..
    Thanks.

    Hi,
    Check the character values you entered against the release code Release strategies view.
    Path: SPRo>>MM>>Purchasing>.Purchase Requisition>>Release procedure>>Procedure with classification>>Set Up Procedure with Classification
    Click on release strategies , here click on classification , so check the valuues enterd against the hirarchy.
    Regards,
    Andra

  • How to check the data for duplicates in xml

    Hi all,
    I have an xml similar to the below. In that I need an xquery which can remove the tags for which the data is same. For example in the below xml for first <customer> first <address> the <houseno>
    and the second <address>'s <houseno> is same in that case there should be only one <houseno> tag with the data in the output xml. Please check the Input XML and Output XML xml formats below .
    I am able to get the OUtputxml but with the same <houseno> repeating. I am not able to find a way in which I can chk the data and stop the tag getting created in the output.
    Could you please suggest me the ways in which I can do. It would be of great help for me. Thanks a ton in advance.
    Input XML
    <customers>
         <customer>
              <address>
                   <houseno>212</houseno>
                    <phone>121221</phone>
              </address>
              <address>
                   <houseno>212</houseno>
                   <phone>42334</phone>             
              </address>
         <customer>
         <customer>
              <address>
                   <houseno>3243</houseno>
                   <phone>6565</phone>
              </address>
              <address>
                   <houseno>3434</houseno>
                    <phone>78778</phone>
              </address>
         </customer>
    </customers>
    Output XML Expected
    <customers>
    <customer>
              <address>
                   <houseno>212</houseno>
                    <phone>121221</phone>
                      <phone>42334</phone>              
              </address>
         <customer>
    <customer>
              <address>
                   <houseno>3243</houseno>
                   <phone>6565</phone>
                   <houseno>3434</houseno>
                    <phone>78778</phone>
              </address>
         </customer>
    </customers>
    Output XML Which I am getting
    <customers>
    <customer>
              <address>
                   <houseno>212</houseno>
                    <houseno>212</houseno>        
                    <phone>121221</phone>
                      <phone>42334</phone>              
              </address>
         <customer>
    <customer>
              <address>
                   <houseno>3243</houseno>
                   <phone>6565</phone>
                   <houseno>3434</houseno>
                    <phone>6565</phone>
              </address>
         </customer>
    </customers>
    Regards

    First of all the desired output.
    [quote]
    <customers>
    <customer>
              <address>
                   <houseno>212</houseno>
                    <phone>121221</phone>
                      <phone>42334</phone>              
              </address>
         <customer>
    <customer>
              <address>
                   <houseno>3243</houseno>
                   <phone>6565</phone>
                   <houseno>3434</houseno>
                    <phone>78778</phone>
              </address>
         </customer>
    </customers>
    [/quote]
    I don't think this is a very good choice and will be causing trouble no end in a future stage of using the data...
    I would rather propose a better choice to my thinking like this.
    [code]
    <customers>
        <customer>
              <address>
                   <house houseno="212">
                       <phone>121221</phone>
                       <phone>42334</phone>
                   </house>
              </address>
         </customer>
        <customer>
            <address>
                <house houseno="3243">
                    <phone>6565</phone>
                </house>
                <house houseno="3434">
                    <phone>78778</phone>
                </house>
           </address>
      </customer></customers>
    [/code]
    In that case, this is capable of producing the regrouped output.
    [code]
    <customers>{
        let $doc:=doc("your_data.xml")
        for $customer in $doc/customers/customer
        return
        <customer>{
            for $houseno in distinct-values($customer/address/houseno)
            return
            <house houseno="{$houseno}">{
               for $phone in $customer/address[houseno=$houseno]/phone
               return
               <phone>{data($phone)}</phone>
            }</house>
        }</customer>
    }</customers>
    [/code]

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

  • How to check the Statistics generated for a table through DBMS_STATS.

    Hi,
    How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ?
    Please let me know.
    Thanks !
    Regards,
    Rajasekhar

    Rajasekhar wrote:
    Hi,
    How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ?
    Please let me know.
    Thanks !
    Regards,
    Rajasekharquery ALL_TABLES

  • How to check the tran code for specific activity.

    Hello friends ,
    could you please let me know how to check the tran code for specific activity . AS in table , i can check , what transaction does what ? But now i need to check the transaction for specific activity .
    E.g , For Administrator workbench , there is transcation like RSA1 .
    thanks in advance
    Regards

    Hi,
    try the TSTC table with SE16.
    Hope it helps,
    MG

  • How to check the DTP status (i.e in active mode or not) for the Prior days.

    Hi SAP gurus,
    How to check the DTP status whether it was in active mode or inactive mode for the prior days ?

    Hi Aditya,
    Kindly have a look into below links,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00dbbfa9-dba2-2d10-bc80-9d6489e4b1c7?QuickLink=index&overridelayout=true
    DTP request Overall status
    Hope this helps.
    Regards,
    Mani

  • How to check the usage of ram and cpu Performance for the particular application like sqlserver ,ms word

    how to check the usage of ram and cpu  Performance for the particular application like sqlserver ,ms word
    ranki

    Hi,
    You can use Performance Monitor and add the required counters.
    Check the below Technet article on Performance Monitor.
    http://technet.microsoft.com/en-us/library/cc749249.aspx
    Below are the steps to monitor the process in Performance Monitor.
    - Go to the Performance Monitor. 
    - Right-click on the graph and select "Add Counters".
    - In the "Available counters" list, open the "Process" section by clicking on the down arrow next to it. Select "% Processor Time" (and any other counter you want).
    - In the "Instances of selected object" list, select the process you want to track. Then click on "Add >>" button. Click on OK.
    Regards,
    Jack
    www.jijitechnologies.com

  • How to check the dependency of Timesten Application version 11.2.1 for OEL 6U4

    How to check the dependency of Timesten Application version 11.2.1 for OEL 6U4

    Hi Chris,
    THank for your reply.. My requirement is I am planning to upgrade my Server OS from OEL 5U8/5U3 servers to OEL 6U4. And we are using timesten application 11.2.1 version as of now. So wanted to check if the same version of TImesten can we install them on OEL 6U4 . if we can install it successfully what are the dependent RPM packages we need to consider for installing the timesten application and will there be any issues using the application? .
    Is timesten 11.2.2 is the officially supported and stable version on OEL6U4?
    And also can you suggest me if I want to check other applications dependency like rhino-2.3 and postgres 8.1.23 version how I need to check if this applications versions are certified to run on OEL 6U4.
    IT would be great help if you can suggest me on this.
    Naveen

  • How to Check the Profit Center - Sales Group - Sales District for a BP

    Hi,
    How to Check the Profit Center - Sales Group - Sales District for a Business Partner?
    I am not able to identify which Profit center - Sales Group- Sales District was assigned to a Business Partner. Please provide me some inputs to check this.
    thanks
    Yadayya

    Hi
    Pls check these tables for data or prepare a z report with abapers.
    GLPCA u2013 PCA line items
    VBKD u2013 sales district
    TVKGR u2013 Sales group
    BUT000 u2013 Business Partner
    Regards
    Sridhara Rao D

  • How to check the number of licences for ODI

    Hi,
    I would like to know , how to check the number of licences exists for my current OID.
    ODI Version: 11.1.1

    ODI licensing is similar to Oracle DB licensing. Its licensed by the number of cores in your target database.
    So, count the number of CPUs in your target box. Multiply them by the core factor (x86 vs sparc, etc) and then match with the paperwork you have :D

  • This is an error from my HP scanner. How can I fix the problem? An error has occurred saving the file because it could not be written to. Check the properties for the file to make sure it is not read-only.

    I recently uploaded the Maverick operating system. I wanted to scan some things on my HP Printer/Scanner and could not . This is the error message I received: An  error has occurred saving the file because it could not be written to.   Check the properties for the file to make sure it is not read-only. I am a novice with the computer and have no one to help. I hope someone knows an easy fix.
    Thank you

    This worked for me:
    "Although it is not a 'fix' for the HP issue, I did find a workaround that helped me. In the Preferences Panel in MacOS X you can pull up the Printer/Scanner preferences and scan directly from OS X. I'd not known of this prior to posting here and it worked like a charm."
    "Of course, HP should still update their software, but it's good to know that Apple has it covered for them."
    I found it here:
    http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/MAVERICKS-WONT-SCAN-HP-C3 09A/td-p/3052105

  • How to reliably check the resolution for a pdf file?

    Should I use preflight to reliably check the resolution for a pdf file?  I have posted my frustrations on http://forums.adobe.com/thread/978098

    You can create your own preflight tool to check for the dpi of embedded images.

  • CIN: How to check the material document posted without excise invoice

    Hi Guru,
    Please advise how to check the material document posted without excise invoice.
    I have tried tcode J1I7 but it seems start to collect the excise invoice first and then material document.
    But my case is to find the material document WITHOUT excise invoice for internal tracking purpose.
    At the moment we start from tcode MB51 to get the list of material document and check in J_1IEXCHDR / J_1IEXCDTL
    Best regards,
    Pakorn

    Hi,
    Try creating a Query in Tcode SQVI by combining tables MKPF and J_1IEXCHDR/J_1IEXCDTL for your requirement.
    Check these threads how to create Query.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6018c1ae-8c44-2d10-6ea9-c3fad2c82880?QuickLink=index&…
    http://ptgmedia.pearsoncmg.com/images/9780672329029/samplechapter/0672329026_CH03.pdf
    Regards
    Binoy

Maybe you are looking for

  • Html Widget Crashes. How to load only one html widget at a time?

    I have a bunch of html widgets which are just tab navigators with html pages inside of them. I must have about 20 of them , mostly leading to google image searches for common searches I tend to do in my work. Instead of constantly searching for these

  • ICal Color Coding for Family Members on on Master Calendar?

    I have a very detailed ical calendar for all the family members' activities & would like to view them with a different color per person on one single calendar. I am not clear whether creating a calendar per person in a group will allow me to then mer

  • Is recovery from ipod possible?

    Apparently I have recently lost my external hard drive and everything on it. My itunes was synced to that hard drive and my entire music collection was on it as well. My ipod has everything on it that was there and had been recently synced. I need to

  • Report column header

    Hi frinds. How can I put report column header in two rows? ex. Family common services 1 2 1 I want it to be like this Family common services 1 2 1 thanks

  • Need download code to redeem on itunes

    i have money on my i tunes but i dont have the download code so i cant get in to buy anything can u help me with that