How to find a new LUN

There is supposed to be a new 1 TB LUN attached to an Oracle server but it doesn't seem to show up.  I've tried the usual commands like cfgadm and format but without any luck.
The guy who allocates stuff on the EMC tells me (I am not sure what it means):
"Lun id is 4 and unique id is 60-06-01-60-d9-70-32-00-1f-1e-62-a0-a2-c2-e4-11"
Is there any way to make this new LUN appear without another reboot?

Try devfsadm
If this is the first LUN from a new storage, there may be a HBA reset or reboot required.
Lets check if the LUN is visible by the HBA:
fcinfo hba-port
then
fcinfo remote-port  -s -p <wwn>
<wwn> from hba-port output
Best regards,
Marcel

Similar Messages

  • How to find the new tables and columns in a schema

    hi..good morning to all...
    I have a schema ABC which owns some objects.
    Now some days before I have made another schema XYZ which was a replica of ABC schema.
    between these days some new tables, new columns in the existing tables(with or without default value), comments on the columns are being added in the new schema i.e XYZ schema.
    Now I have to find the extra things which are present in the new schema. I need to find the new tables, new columns in hte existing tables, their default values and descriptions of those.
    Can u plss help me how can I find it?
    I am guessing that I have to write a SQL query with a minus clause but I am not able to write it and also dont know where should I execute it.
    plss help. thanks in advance.

    And moreover, when I am executing the query to get the desired result, then it is throwing "illegal use of long datatype" error and pointing to the b.data_default area of my query..
    select a.table_name, a.column_name, b.data_default, a.comments from all_col_comments a, dba_tab_columns b
    where a.TABLE_NAME=b.TABLE_NAME
    and a.OWNER=b.OWNER
    and a.OWNER=XYZ
    minus
    select c.table_name, c.column_name, d.data_default, c.comments from all_col_comments c, dba_tab_columns d
    where c.TABLE_NAME=d.TABLE_NAME
    and c.OWNER=d.OWNER
    and c.OWNER='ABC'
    order by 1, 2;
    plss help...

  • How to find/add new libraries in LabVIEW

    I am very new with LabVIEW and I am using version 6.0. I am trying to follow the tutorials but I cannot find some of the mentioned libraries. For example, the signal generation library (1SIGGEN.LLB) is missing. I would appreciate if one could tell me how to find and add missing libraries. Thanks.

    I don't know if the specific library you mentioned is one of them, but many of those types of libraries are not included with the Basic Version of LV. That could be your problem. If you have the Full or Professional Development version, the libraries should have installed when you installed LV.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How do i get new LUN's created on the unmanaged fibre SAN to be recognised?

    i created 1 and it didnt recognise it until i rebooted the vmserver - do i have to do this everytime i modify the FC SAN (the iSCSI SAN was much more dynamic)
    i have tried partprobe from dom0 and it didnt help
    surely i dont have to reboot?
    Thanks

    Martin Brambley wrote:
    i created 1 and it didnt recognise it until i rebooted the vmserver - do i have to do this everytime i modify the FC SAN (the iSCSI SAN was much more dynamic)
    surely i dont have to reboot?Unfortunately, rebooting is the simplest option. You can also check if rescan-scsi-bus.sh (part of the installed sg3_utils) package works for you. It sends an HBA rescan command to all connected HBAs and should trigger the discovery of new LUNs. However, some HBAs like this, others don't.

  • How to find the new download versions?

    I hope this is the right place to post this question since I have no need for learning Java programming - also I do not create applications. The thing is that I'm trying to update my XP Home SP2 (IE7). The screenshot below is the Java that came with my PC when I got it - the last one on the list is an update I made yesterday here at this site. A mistake, I think? Should I un-install it? I would be very happy if someone could guide me to the right download links. Thank you so much in advance...
    http://i31.tinypic.com/2eefwcn.jpg

    Thank you javaci. That was helpful - I did not know this link. The test said I have the right software. I guess that means, that I can't benefit from an update. I find that a bit surprising - after all these years. I never updated any of the Java installed in my PC.
    Now I only need help with the other question: should I un-install the Java download I made yesterday and if so: how? It is the last one on the list in the screenshot above - this one:
    [Screenshot of all Java installed|http://i31.tinypic.com/2eefwcn.jpg]

  • How can find a new asset or old asset througha wbs element from anla table?

    Hi,
    I have a wbs element.I have to check whether it is a old one or new asset.How can justify about this things.
    Please guide me.
    Regards
    Ricky

    The connection between WBS and asset under construction in in the table ANLI!

  • How to find this new  error ?

    <?php
    $connection = oci_connect("apps", "apps","prod");
    $query = "select h.Order_Number,L.ORDERED_QUANTITY,L.UNIT_SELLING_PRICE*L.ORDERED_QUANTITY,L.UNIT_SELLING_PRICE*L.ORDERED_QUANTITY
    from oe_order_headers_all h,
    oe_order_lines_all l
    where h.org_id = 82
    and h.header_id = l.header_id
    and h.org_id = 82
    and l.org_id = 82
    and to_char(h.ordered_date,'YYYYMMDD') = '20060426'
    $statement = oci_parse ($connection, $query);
    oci_execute ($statement);
    ?>
    <html>
    <head><title>My website</title></head>
    <body>
    <table border =1>
    <tr>
    <td >name</td>
    <td>quantity</td>
    <td>money</td>
    <td>rowsum</td>
    </tr>
    <?
    $totalsum1 = 0;
    $totalsum2 = 0;
    $totalsum3 = 0;
    $ordersum1 = 0;
    $ordersum2 = 0;
    $ordersum3 = 0;
    // Just pull the data & print..
    while($row = oci_fetch_array ($statement, OCI_BOTH))
    $rowsum = $row[1] + $row[2];
    $ordersum1 = $$ordersum1 +$row[1];
    $ordersum2 = $$ordersum2 +$row[2];
    $ordersum3 = $$ordersum3 +$row[3];
    $totalsum1 = $totalsum1 + $row[1];
    $totalsum2 = $totalsum2 + $row[2];
    $totalsum3 = $totalsum3 + $row[3];
    if ($name is not null and $name <> $row[0] ){
    print("<tr>");
    print("<td>&#23567;&#35745;</td>");
    print("<td>$ordersum1</td>");
    print("<td>$ordersum2</td>");
    print("<td>$ordersum3</td>");
    print("</tr>");
    else {
    print("<tr>");
    print("<td>$row[0]</td>");
    print("<td>$row[1]</td>");
    print("<td>$row[2]</td>");
    print("<td>$rowsum</td>");
    print("</tr>");
    $name = $row[0];
    print("<tr>");
    print("<td>&#21512;&#35745;</td>");
    print("<td>$totalsum1</td>");
    print("<td>$totalsum2</td>");
    print("<td>$totalsum3</td>");
    print("</tr>");
    ?>
    </table>
    </body>
    </html>

    I think the problem is with the below line...
    if ($name is not null and $name <> $row[0] )
    Try with this..(also check for is_null() function..)
    // try this..no need to initialize..
    if (isset($name) and $name != $row[0] )
    // or try this..no need to initialize..
    if (!empty($name) and $name != $row[0] )

  • How to find out the user who has created  a new field in the custom table.

    How to find out the user details who has created  a new field in the custom table.
    Thanks,
    Joan

    Hi Jesudasan ,
    You can know the user details with version management.Please find the
    below procedure to know.
    Go to table->Utilities tab->version->Version management->Compare the previous one .
    Hope this solves the issue,Let me know if you have any issues.
    Thanks,
    Rajani

  • When I first turned on iMovie all videos from iPhoto automatically were found. Now I have more videos on iphoto, how do I get iMovie to find the new ones?

    When I first turned on iMovie all videos from iPhoto automatically were found. Now I have more videos on iphoto, how do I get iMovie to find the new ones?

    jtcollins wrote:
    if iMovie is open, connect your iPhone to comp. iMovie '11 will now find your phone and look for videos as it would if camera was connected
    (Underline is my emphasis)    
    Hi jt - Alex was actually referring to video clips in iPhoto not appearing in the item "iPhoto Videos" in the Events Library in iMovie - thanks for your post though (the 2 words are very similar).
    John

  • When I open iPhoto 9.2.1 it says that my library needs to be upgraded but when I upgrade the library I am trying to open (33 GB worth of pictures from 2006) the new application says it cannot read the files and how to find them on the system to reimport?!

    When I open iPhoto 9.2.1 it says that my library needs to be upgraded but when I upgrade the library I am trying to open (33 GB worth of pictures from 2006) the new application says it cannot read the files and how to find them on the system to reimport?! and then I'd like to erase the original files since the space requirement is huge!!!! Why is upgrading software iPhoto such a pain. I've gotta get a presentation done and all I get for my money is roadblock!!!

    hello, it sounds like the library is damaged.
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 

  • Hi.. I have a new apple computer and have no idea how to find stuff on here... Can someone tell me how to find my search history? Thanks

    Hi.. I have a new apple computer and have no idea how to find stuff on here... Can someone tell me how to find my search history? Thanks

    In addition to Japib's suggestion check out
    OS X Yosemite: See your files in the Finder
    OS X Yosemite: Finder preferences
    OS X Yosemite: Ways to quickly see and open items
    OS X Yosemite: Search with Spotlight
    OS X Yosemite: Rename files, folders, and disks
    OS X Yosemite: Folder basics
    OS X Yosemite: Ways to organize files on your desktop
    One more thing:
    Search history is a term generally referring to what sites you have visited via your browser (e.g. Safari)
    To see your Safari search history just open Safari and go to the top menu and select from Show History from the History
    See two pics below

  • How do I move a back up to another external drive and how does the Mac Book then find the new back up?

    how do I move a back up to another external drive and how does the Mac Book then find the new back up?
    I currently have the back up on a Time Capsule, I want to move it from the Time Capsule to another external hard drive.

    Did you read the link to the Pondidni website?  You will have to select the Time Machine HDD for the new MBP and the old one in System Preferences>Time Machine:
    Ciao.

  • Creative Megaworks 250D 2.1 THX: How can I find a new remote control & spare satellite(s)?

    Hi all,
    For years, we have owned and used one remarkable speaker set from Creative:
    The Creative Megaworks (Cambridge Soundworks) 250D 2.1 THX-certified speakers!
    I have no complaints. The sound this small 2.1 set produces is amazing! The 300 watts (RMS) power can shake the whole house - x50W + 2x75W are more than enough! Movies, music, games, everything sounds great - bass is deep and clear, mid-range is good, high frequences are clear! There's no noise and no distortion (I have connected the system to an SPDIF digital connector on my sound card), the Signal-to-Noise ratio is 99 dB, and the frequency response of the set is extremely good, too!
    But I have a problem, now. We have broken, by accident, one of the satellites. Now I have only one satellite, and the bass/amplifier with the remote control... Looks like a . system... ;-)
    This system was a present for us. Maybe we were lucky, but I am very happy with the build quality of this Creative spaker set. Until we have broken one of the satellites ourselves, yesterday, everything was OK, and the sound it produced was amazing all these years...
    I tried to contact a Creative representative, asking if we can maybe order one (or two) spare satellites fot this set, but the only reply (up to now) was:
    "You are out of warranty period. Buy a new speaker set."
    Well, we could, I guess...
    But:
    First: Creative does not have (at present) a similar model, 2.1, THX certified, with digital (SPDIF input), 300W+ RMS, 99 dB Signal-to-Noise.
    Second, to throw away such an amazing set just because there's one satellite broken? That would be such pity! :-(
    I'd like to buy one (or two) new 250D satellites. I was thinking even that, in the worst case, I can maybe try to order 2 satellites from a Creative Gigaworks S750 set. They have very similar characteristics, 70W rms power, 8 ohms, so maybe this'll work. I was trying to check today if two satellites can be ordered, but with no luck up to now... :-(
    Does anyone have any similar experience? What do you do if you accidentally have broken up one satellite from a 2./5./7. expensi've speaker set? Should you throw away the whole set? Try to find similar satellites?
    I hope Creative support will help, but I don't have much hope, at present...
    Does anyone have experience connecting an S750 satellite to a 250D system? Can I expect any problems? Or it'll work?
    Finally, just one more question:
    The remote control.
    Currently, the remote control unit on our 250D model works OK. But I am a bit worried, if anything happens, that the speaker set can become useless. So I'd like to order one spare new remote control for this model, just in case. Can someone help?
    Maybe, even if this speaker set is not produced anymore, a new remote control can be ordered from Creative?
    I'd really like to make these 250D speakers produce great sound again!? I am a big Creative fan and Creative 250D 2.1 THX is one of the best sound systems I have ever owned (or heard) and I'd like to do everyting to fix things up...
    Thanks for all the help!
    Cheers! :-)
    PS The satellites of the 250D look very much like these. But these Cambridge Soundworks satellites are more powerful (20W RMS); I was even thinking to order a pair of them, but not sure if they'll fit well. Maybe a pair of S750 satellites (70W RMS) is a better idea? But in any case, if I can find a new pair of satellites, what to do with the remote control?... Please, help!

    After exchanging several messages with official Creative Support, I feel a bit disappointed... For years, I have believed that Creative is a company that makes amazing audio products. They probably still do, but now that I am a customer who owns an expensive product of theirs, but with expired warranty, they don't want even to suggest a solution that can work for both parties!
    Why is Creative Support so un-supportive? :-( I am still a Creative customer, after all, right?
    My communication with Support went nowhere. After it was established that our 250D system is out of warranty period (it is only 2 years, btw), they refused to sell me a replacement satellite (even if they still may have some left in stock, for such cases)!
    Finally, I found S700 satellites on ebay and I hope that 2 of them will fit well with the 250D system. Impedance of 250D satellites is 8 ohms (S700 satellites are 8 ohms, too), power is almost the same (250D satellites are 75W rms, and S700 are 70W rms), Signal-to-Noise of both systems is 99 dB, and frequency response is similar, too (250D satellites should be around 50Hz - 8 kHz, I think, and S700 should be around 50Hz - 20 kHz).
    Well, my final 'point of worry' was that if anything happens with the remote control, we won't be able to switch on/off the system, even if the sub/amplifier works. So, I tried to ask Support just to sell me one new remote control, if they can. To sell, not to give for free, mind this! ;-)
    They refused!
    My e-mails are either left un-answered, or the only kind of reply I get is 'We can offer you 10% off our new products'. Well, I don't want to buy a whole new expensi've system, if I can just get 1-2 replacement parts for my old one, and have it working for years! :-)
    (Imagine you buy an expensive DSLR camera, you break the LCD screen, and imagine how Canon or Nikon refuse to sell you a replacement LCD, because you're out of warranty! I can't imagine that!)
    Well, with Creative it looks like this works only this way: Buy a new system. While speaker system is within its warranty period, Creative may replace defecti've and/or broken parts. Once system is out of warranty period, you can simply throw the system away, as Creative will not sell you replacement parts, no matter how politely you ask (and no matter if such parts are available at Creative or not)!
    I hope I will be able to use our 250D system for some more time (after the satellites arrive). I don't know how I can find a new remote control, just to be on the safe side.
    And I am not sure I will buy Creative product next time. I will carefully look around and maybe will pick up a product from a company which will offer me not only warranty support, but out-of-warranty support, too. That would be wise.
    I like how the high-end Creative speaker systems sound. I simply cannot understand how this company can be successful, if they make such great products, but then refuse to help its customers, when they have problems... :-(

  • How do I find the new colors in Pantone Formula guide in InDesign CC?

    It seems like the Pantone library in InDesign is not updated. I can't find the newly added colors from the Formula guide I just bought. (pantone solid coated/uncoated)
    For examle color 2248. Where do I find the new colors and how do I add them to my colorpanel?
    I hope there is someone who can help me with this!

    Check this discussion it may help
    http://forums.adobe.com/message/5737194#5737194

  • HT1208 Where do I find a tutorial about how to use the new iTunes? I have version 11.1.3 (8). I looked on the Apple web site but only found info extolling the virtues of iTunes, not how to use it.

    Where do I find a tutorial about how to use the new iTunes? I have version 11.1.3 (8). I looked on the Apple web site but only found info extolling the virtues of iTunes, not how to use it.

    Use it the same way as previously.
    ctrl B shows the menus.
    ctrl S shows the sidebar.
    What else do you need help with?

Maybe you are looking for

  • How to print numbers in words

    Hello friends, How can we print numbers in words like 800 as Eight Hundred. TIA shekar.

  • Bluetooth driver problem  on windows 7 64 bit

    I am getting an error code 28 when trying to sync new iphone using bluetooth connection. Problem say driver does not install. I can't find correct driver and no CD came with the iphone. Iphone connects to itunes with no problem when using provided us

  • Incorrect Transfer from PPro CC with Codecs Mysteriously Gone Missing

    I posted this question in the PPro Forum as well, but haven't had any luck getting a resolution. Perhaps someone here can help. So, recently I've been having issues with PPro/Media Encoder CC after the last update. The issue is that once I try to exp

  • How to open link in new window using Mountain Lion

    When I upgraded to Mountain Lion, opening a link closes the window I'm in when it opens the new one.  Example, I'm in email, click on a link, and then have to reopen email.  The back button doesn't work.  Where is the setting to change this so my cur

  • Output needs to attach automatically after saving invoice

    Dear Friends. for my invoices output needs to be assigned automatically after saving invoice. as of now it not like that even though i created condition record. manually we can able to enter. this process has to be applied for both manually and batch