RDM to delete and recreate the mapping of RDM file and fix

Hello

I wrote the following script, but it works fine except it does not create the mapping of RDM file.

If I comment out the following lines, it works fine.

$fileMgr.DeleteDatastoreFile_Task ($name, $datacenter)

$spec.deviceChange [0] .fileOperation = "crΘer".

Here is the code below

Replace-VM-RDM function {}

Param ($scsiid, $rdmname, $vmname, $filename)

< #.

Convert SCSI address in Vmware format

# >

$scsicontroller = $null

$scsiid_split = $null

$scsiid_split = $scsiid.split(":")

$scsicontroller =($scsiid_split[0])

# SCSI VMware in the GUI controller ID is a number greater than the real controller id

$scsicontroller = [int] $scsicontroller + 1

# Vmware waiting conntroller with 4-character id

$scsicontroller =($scsicontroller.) (ToString()) + "000".

$scsicontroller

# SCSI LOGICAL UNIT NUMBER

$scsilun = $null

# VMware SCSI LUN ID in the GUI is a higher number than the id real lun

$scsilun = [int]($scsiid_split[1]) #+ 1

###

$vm = get-VM-name '$vmname ' | Get-View

IF (!) (($filename))) {}

$RDMFile = $rdmname.split("") [0] + "_RDM.vmdk"

$filename = (($vm.)) (Config.Files.VmPathName). Replace("$vmname.vmx","$RDMFile"))

}

$esx is get-view $vm. Runtime.Host

< #.

Download CanonicalName RDM Lun

# >

$rdmCanonicalName = $null

$rdmCanonicalName = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). CanonicalName)

$rdmDevicePath = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). DevicePath)

foreach ($dev in $vm. Config.Hardware.Device) {}

If (($dev.)) GetType()). {Name - eq "VirtualDisk")}

If (($dev.Backing.CompatibilityMode-eq "physicalMode") - or)

($dev.Backing.CompatibilityMode-eq "virtualMode")) {}

If (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {}

# Remove the hard drive

$hd = get-disk hard $vm.name | where {$_.} Filename - eq $dev. Backing.FileName}

$hd | Remove-hard drive - confirm: $false

Write-Host "file name:" $dev.backing.fileName "

Write-Host "Disk Mode:" $dev.backing.diskMode

$dev.backing.deviceName

$dev.backing.lunUuid

$DevKey = $dev.key

$CapacityInKB = $ dev. CapacityInKB

$fileMgr = get-View (view Get ServiceInstance). Content.fileManager

$datacenter = (get-View (Get - VM $VMname |)) Get-Datacenter) USER.USER) .get_MoRef)

foreach ($disk in $vm. LayoutEx.Disk) {}

if($Disk.) Key - eq $dev. Key) {}

foreach ($chain in $disk. {String)

foreach ($file in $chain.) FileKey) {}

$name = $vm. LayoutEx.File [$file]. Name

$fileMgr.DeleteDatastoreFile_Task ($name, $datacenter)

}

}

continue

}

}

}

}

Else if (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {Write-Host "Selected SCSI address [$scsiid] is not a RDM"}

}

}

#$hd1 = New-disk hard - VM $vmname - DeviceName $rdmDevicePath - DiskType RawPhysical # this line works

$spec = $null

$spec = new-Object VMware.Vim.VirtualMachineConfigSpec

$spec.deviceChange = @)

$spec.deviceChange += new-Object VMware.Vim.VirtualDeviceConfigSpec

$spec.deviceChange [0] = new-Object VMware.Vim.VirtualDisk .device

$spec.devicechange [0].device.capacityInKB = $CapacityInKB

$spec.deviceChange [0].device.backing = new-Object VMware.Vim.VirtualDiskRawDiskMappingVer1BackingInfo

$spec.deviceChange [0].device.backing.fileName = $filename

$spec.deviceChange [0].device.backing.compatibilityMode = "physicalMode".

$spec.deviceChange [0].device.backing.diskMode = «»

$spec.deviceChange [0].device.backing.lunUuid = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). UUID)

$spec.deviceChange [0].device.connectable = new-Object VMware.Vim.VirtualDeviceConnectInfo

$spec.deviceChange [0].device.connectable.startConnected = $true

$spec.deviceChange [0].device.connectable.allowGuestControl = $false

$spec.deviceChange [0].device.connectable.connected = $true

# Take the next unused volume for HD key

$spec.deviceChange [0].device.key = $DevKey + 1

# 7 SCSIID UnitNUmber is reserved for the controller - then go to 8.

If ($scsilun - eq 6) {$scsilun = $scsilun + 1}

# Take the next unit for the HD number

$spec.deviceChange [0].device.unitnumber = $scsilun

# Key device for the SCSI controller

$spec.deviceChange [0].device.controllerKey = $scsicontroller

# Create vmdk file

$spec.deviceChange [0] .fileOperation = "crΘer".

$spec.deviceChange [0] .operation = 'Add '.

$vm = get - View (Get - VM $VMname) USER.USER

$vm. ReconfigVM_Task ($spec)

}

Replace-VM-RDM $vmname $scsiid $rdmname $filename

I am working, it just need to reorganization and then the Devicename was wrong.

Here's the script working.

Replace-VM-RDM function {}

Param ($scsiid, $rdmname, $vmname, $filename)

<>

Convert SCSI address in Vmware format

#>

$scsicontroller = $null

$scsiid_split = $null

$scsiid_split = $scsiid.split(":")

$scsicontroller =($scsiid_split[0])

# SCSI VMware in the GUI controller ID is a number greater than the real controller id

$scsicontroller = [int] $scsicontroller + 1

# Vmware waiting conntroller with 4-character id

$scsicontroller =($scsicontroller.) (ToString()) + "000".

$scsicontroller

# SCSI LOGICAL UNIT NUMBER

$scsilun = $null

# VMware SCSI LUN ID in the GUI is a higher number than the id real lun

$scsilun = [int]($scsiid_split[1]) #+ 1

###

$vm = get-VM-name '$vmname ' | Get-View

IF (!) (($filename))) {}

$RDMFile = $rdmname.split("") [0] + "_RDM.vmdk"

$filename = (($vm.)) (Config.Files.VmPathName). Replace("$vmname.vmx","$RDMFile"))

}

$esx is get-view $vm. Runtime.Host

<>

Download CanonicalName RDM Lun

#>

$rdmCanonicalName = $null

$rdmCanonicalName = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). CanonicalName)

$rdmDevicePath = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). DevicePath)

foreach ($dev in $vm. Config.Hardware.Device) {}

If (($dev.)) GetType()). {Name - eq "VirtualDisk")}

If (($dev.Backing.CompatibilityMode-eq "physicalMode") - or)

($dev.Backing.CompatibilityMode-eq "virtualMode")) {}

If (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {}

# Remove the hard drive

$hd = get-disk hard $vm.name | where {$_.} Filename - eq $dev. Backing.FileName}

$hd | Remove-hard drive - confirm: $false - DeletePermanently

Write-Host "file name:" $dev.backing.fileName "

Write-Host "Disk Mode:" $dev.backing.diskMode

$dev.backing.deviceName

$dev.backing.lunUuid

$DevKey = $dev.key

$CapacityInKB = $ dev. CapacityInKB

<#$fileMgr =="" get-view="" (get-view="">

$datacenter = (get-View (Get - VM $VMname |)) Get-Datacenter) USER.USER) .get_MoRef)

foreach ($disk in $vm. LayoutEx.Disk) {}

if($Disk.) Key - eq $dev. Key) {}

foreach ($chain in $disk. {String)

foreach ($file in $chain.) FileKey) {}

$name = $vm. LayoutEx.File [$file]. Name

$fileMgr.DeleteDatastoreFile_Task ($name, $datacenter)

}

}

continue

}

}#>

}

}

Else if (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {Write-Host "Selected SCSI address [$scsiid] is not a RDM"}

}

}

#$hd1 = New-disk hard - VM $vmname - DeviceName $rdmDevicePath - DiskType RawPhysical # this line works

$spec = $null

$spec = new-Object VMware.Vim.VirtualMachineConfigSpec

$spec.deviceChange = new-Object VMware.Vim.VirtualDeviceConfigSpec [] (1)

$spec.deviceChange [0] = new-Object VMware.Vim.VirtualDeviceConfigSpec

# Create vmdk file

$spec.deviceChange [0] .fileOperation = "crΘer".

$spec.deviceChange [0] .operation = 'Add '.

$spec.deviceChange = new-Object VMware.Vim.VirtualDeviceConfigSpec [] (1)

$spec.deviceChange [0] = new-Object VMware.Vim.VirtualDeviceConfigSpec

$spec.deviceChange [0] .operation = 'Add '.

$spec.deviceChange [0] .fileOperation = "crΘer".

$spec.deviceChange [0] = new-Object VMware.Vim.VirtualDisk .device

$spec.deviceChange [0].device.key = - 100

$spec.deviceChange [0].device.backing = new-Object VMware.Vim.VirtualDiskRawDiskMappingVer1BackingInfo

$spec.deviceChange [0].device.backing.fileName = "$filename".

$spec.deviceChange [0].device.backing.deviceName = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). DevicePath)

$spec.deviceChange [0].device.backing.compatibilityMode = "physicalMode".

$spec.deviceChange [0].device.backing.diskMode = «»

$spec.deviceChange [0].device.connectable = new-Object VMware.Vim.VirtualDeviceConnectInfo

$spec.deviceChange [0].device.connectable.startConnected = $true

$spec.deviceChange [0].device.connectable.allowGuestControl = $false

$spec.deviceChange [0].device.connectable.connected = $true

# Key device for the SCSI controller

$spec.deviceChange [0].device.controllerKey = [int] $scsicontroller

# 7 SCSIID UnitNUmber is reserved for the controller - then go to 8.

If ($scsilun - eq 6) {$scsilun = $scsilun + 1}

# Take the next unit for the HD number

$spec.deviceChange [0].device.unitnumber = [int] $scsilun

$spec.deviceChange [0].device.capacityInKB = [int] $CapacityInKB

$vm = get - View (Get - VM $VMname) USER.USER

$vm. ReconfigVM ($spec)

}

Replace-VM-RDM $vmname $scsiid $rdmname $filename

Tags: VMware

Similar Questions

  • Why Fm deletes space after the xref in xml files?

    One solution is to put in a non-breaking space, but which could affect a way unwanted line breaks.

    This discussion should be moved to the structured FrameMaker forum.

    According to me, that there is a bug in the management of the RemoveExtraWhiteSpacesOnXMLImport implementation in maker.ini. This setting is designed to condense the sequences of spaces used in documents automatically printed XML to a single space. It seems to remove space after a reference as well. If you have control over the XML you read and that you can avoid these white space (or other situations in which the entry can have additional spaces), the best solution is to set this flag OFF.

    What FM version do you use? I don't remember if this bug has been fixed in FM 2015.

    -Lynne

  • When Remove My Documents & send to the trash and get the error message from file (s) name (s) too long

    the situation: I erase all the contents of Documents and sending them to the Recycle Bin.  This is in preparation for a new backup of Documents to an external hard drive device.
    What continues to be: whenever I press DELETE I get the following error message, "file contains elements whose names are too long for the Recycle Bin." -I combed through all the names in the Documents & shortened all the time, but I always get this error message.
    questions: How can I identify & locate offend him, too long file name of the file or files?  What is the space limit for the length of the file/folder names + character?  is it possible to change the settings to correct this extremely frustrating loop somehow, I'm in?
    I would greatly appreciate any help/tips on the issue.  Thank you!

    Hello

    you keep insisting on 'my

    There is no "My Documents" on Vista

    It's only 'Documents '.

    Windows Vista renames 'My Documents' as, simply, 'Documents '. "My music", "My pictures" and "My videos" have also lost their prefix and moved to directly under the directory (profile).

  • JAVAH error: class for the "com.ntv.ndkjni" file is not found

    Hello

    My project directory: C:\ndkJNI

    My java file directory: C:\ndkJNI\src\com\ntv\ndkjni

    My package name: com.ntv.ndkjni


    (1) I entered guest at C:\ndkJNI\src\com\ntv\ndkjni

    2) Javac test.java and create test.class successfully. test. Class is located in the C:\ndkJNI\src\com\ntv\ndkjni folder.

    (3) later, I used Javah, try below javah variously

    (a) test javah - classpath C:\ndkJNI\src\com\ntv\ndkjni

    (b) javah - classpath C:\ndkJNI\src\com\ntv\ndkjni.test

    (x) javah - classpath C:\ndkJNI\src\com\ntv\ndkjni com.ntv.ndkjni. test

    (y) javah -classpath C:\ndkJNI\src\com\ntv\ndkjni com.ntv.ndkjni test

    (c) javah - classpath C:\ndkJNI\src\com\ntv\ndkjni com.ntv.ndkjni. test

    (d) javah com.ntv.ndkjni. test

    (e) javah com.ntv.ndkjni to test

    -> f) test javah com.ntv.ndkjni .class (error: exception thrown from an improper argument of thread exception)


    I'm looking for 5 days. I couldn't find a solution. I try another computer. I tried ubuntu and win8, the error always with me.

    It's interesting when I Remove the package com.ntv.ndkjni; of java file, then recreate the class with javac file then javah can create the header file successfully.


    Please help me.


    *****************************test.java**************************

    package com.ntv.ndkjni;

    public class test {}

    public static

    {

    System.loadLibrary ('hello');

    }

    public static native int toplama (int sayi1, int sayi2);

    }

    ******************************************************************

    aaa.PNG

    JAVAH then takes a full qualified class name in your case, it would be

    com NTV.ndkjni.test

    As with all things related to java, the class path is used to resolve the class based on the fully qualified name.  The name solves the DEPARTURE on the path, and then try to find the class below the classpath to resolve the name.

    Because of this, your class path should be

    C:\ndkJNI\src



  • Problem with the rule while the data is loading files

    Hello

    I'm having a problem trying to load data to an application that uses rules files. Load data files were from another application using the DATAEXPORT. I have two files for each entity. One is for the current year and one for next year. The source and target applications are different, so I do all the mapping using rule files.

    The data of the current year file contains data for CurrMonth:Dec & CurrYear. The following year data file contains data for Jan: Dec and the next. I made rules for each entity files load data into the application and has made the mapping when creating these rules files using set 12 months.

    The problem that I am facing is that I'm able to correctly load the following year in the target application, my rules file is the right month for each column mapping. But for the year underway, I have just 2 columns of data (whereas & CurrMonth = Nov) and so when I'm trying to load the data file using the rules file, it is to map the November and December months like January and February and charging at these months of FY11, which is false.

    I don't know how to solve this problem. The current year data file it will always change in terms of months then how can I modify the rules that he recognizes that the months are coming in and where to put the data.

    Please let me know your suggestions. Any help will be appreciated.

    Thank you!
    ~ Hervé

    PS ~ it was the same problem, I was faced with a few months back when I posted this question and I followed the advice in this post, but always faced to the question - DATAEXPORT and rules files

    Published by: Gwen on December 20, 2011 08:25

    Adella,
    We have faced a similar issue and we were able to solve it by sticking to these months dimension members (& currmonth: dec) and generate the header
    The export file created when paste us the dimension names in front of months on the export file
    Suppose that your export file is currmonth.txt and she Nov and Dec
    first line of your export file should look like this
    'Version' 'Year' 'Scenario' "XYZ" "123" "ABC" "Account", "Nov", "Dec".
    We have created a batch file to add this to the original export file, it looks like this
    Paste d "\0" Header.txt "D:\Hyperion\products\Essbase\EssbaseServer\app\xyz\123\currmonth.txt" > "D:\Hyperion\products\Essbase\EssbaseServer\app\xyz\121\currmonthchange.txt".

    Header.txt is a text file that it contains ("Version" "Year" "Scénario" "XYZ" "123" "ABC" "count")

    change your rules file so that it generates the header in your source (currmonthchange.txt)

    rulefile--> the properties of data source--> header--> data records source header--> recording containing the names of data filed charge (set 1)

    I hope this will solve your problem

  • OK to remove the mapping of RDM?

    I need to cold migrate some virtual machines with virtual RDM mode on new servers. I'll introduce the RDM with different numbers of LUNS on the target hosts. My co worker suggests that when you remove the ROW before the migration of the cold, you can not delete the mapping file, otherwise this will cause data corruption, so it selects the removal of the option of vm (not remove and delete).

    My understanding is the file ROW is just a mapping file and is safe to delete. My thought is that delete saves space and accelerates the migration time.

    RDM files can simply be removed without data corruption?, most vmware articles suggest they can and they're just mapping files.

    When the virtual machine allows you new hosts, a new virtual RDM will be added when the lun is presented to the new hosts.

    Yes, you can delete the ROW with removal of the VM disk option before the migration of the cold.

    It won't cause any data corruption that all data is on LUN storage.

    RDM file contain only for the LUN mapping information.

    Once you have completed the migration of VM, you can add RDM LUN to VM, just make sure that you attach Correct RDM LUN to VM.

    See this KB for more information-

    VMware KB: Switching between physical and virtual compatibility modes in ESX/ESXi, a mapping of raw data

  • My account is migrated to a new server, so I had to recreate the same account in Thunderbird, but I can not delete the old one - they appear together now.

    My account is migrated to a new server, so I had to recreate the same account in Thunderbird, but I can not delete the old one - they appear together now.

    If there is no email from the old account that you want to keep, move them in local directories first.
    Tools > accounts settings
    OR
    Right click on the email account in the fodler pane, and then select "settings".

    Select the account you want to delete.
    Click on "Actions account."
    Select 'delete account '.
    Click OK

    See the image as an aid:

  • What would prevent Thunderbird to recreate the deleted files *.msf?

    Which would prevent TB to re-create *.msf files after they have been deleted, to get the old mail appears in TB (mail still physically in the Mail folder)?

    Had to create a new profile & copy in a bunch of accounts. Everything worked OK except one.

    1, an acct lacked in Tbird. Finally I've recreated the acct, but it captures not all old emails, finding themselves in the new profile under the acct folder (is not yet).

    All other accts work. I deleted for this account *.msf files and rebooted. Still not a pick up old email, but did recover new msgs (arrival after that the new profile has been created).

    Then, when I got the 1 TB re - start, I was sure that all messages were display. A few minutes later, that I would look & they were all gone an Acct - except most recent messages. Huh? I drank a cup of coffee.

    Finally saw that TB was not yet re - create the msf files, so it never keeps messages it displays (I guess - they keep "disappear").

    What 'they' do you mean? *.Msf files? How could they be in a different profile than running?

    "This is what really happened."

    TB has created an e-mail folder 'different' for this acct - which I didn't see at the bottom of all accts under "Profiles\ < profile_name > \Mail."

    I had entered in the name of the POP server of the ACTC in middle of TB. I used "POP.unseen...". "instead ofmail... .unseen. "- which seems unlikely to work. The instructions of the supplier are to be used "mail.unseen...". »
    I'm looking for the other file of mail storage because the name of the server 'pop.unseen... '. "worked. He created of d/l the most recent mail in the new mail store folder, that I don't see. I was expecting it to be like the old folder & as another account of this provider service.

    Once I changed the name of the server in the settings of TB, he used the files recreated the *.msf & file storage 'correct' in this folder. But, I had to open the box received & sent these two folders of mail storage files, and then copy the old posts the most recent mail files.

    If Tbird / invisible servers did not work using server names "mail.unseen...". ' or 'pop.unseen... '. ", I would have immediately taken my"mistake ".

  • My Contacts Windows Live is 452,1 MB and contains 16 files that extend into the size of 28.1 MB to 29.2 MB. Can one be deleted and if so, which?

    Contacts Windows Live is 452,1 MB

    I was sent here from the "Windows Live Solution Center" to ask my 'Q', below:

    My Contacts Windows Live is 452,1 MB and contains 16 files that extend into the size of 28.1 MB to 29.2 MB.
    Why so many large files containing essentially the same... Contacts?
    Do we really need 28 + MB to store contacts?
    Two of the files have been accessed today, while others have not been accessed for 6 days.
    Can one be deleted and if so, which?

    XPPro SP3 32 bit

    --
    happytilton®

    @happytilton®

    Since you are using Windows XP, your version of Windows Live Messenger be WLMsgr 2009.

    - so working in online mode (b) - Messenger requires a Live ID access code to use.

    The article I wrote and quoted above explained that WLM (Windows Live Mail), which is also applicable to the WLMsgr 2009 versions contain most of the information to determine what to remember as...

    1. how to use the registry to determine the names of digital files of the database of Contacts

    2A explained that 2009 has two functional databases for each Live ID (a primary and a shadow)

    -both are needed. used 2009 the 'shade' as a catchment area to ensure synchronization occurs in both directions, when changes are made in both locations (local in Messenger or online at contacts.live.com)

    Please read and understand the best article

    http://liveunplugged.WordPress.com/2011/02/04/Windows-Live-Mail-contacts-database/

    ... especially the section dedicated to explain the Contacts 2009 databases.

    Once you determine the digital records of your single Live ID database (shadow and primary) and the program created 'default' you can check the size of each. If you feel that your registry database shows other numeric names (created using other Live ID or perhaps due to an error by typing a user name in the Messenger sign-in box) and these folders can be deleted safely.  Note: you may need to configure Windows Explorer to show hidden and system files to see when viewing in Windows Explorer.

    In addition, you can also, as your contacts are stored online at contacts.live.com, after closing of Messenger remove the any local digital database called folders (for the primary shadow and if is the default). WLMsgr will recreate them on next signon and rebuild any local database folders and files based on what it sync (downloads) of the Live Server to contacts.live.com.

    -Before the deletion of all files, it would be wise to connect to contacts.live.com and check that all your contacts are indeed present and represent for and for saving documents to archives/purposes export contacts to a csv file using the web UI option... Once completed then disconnection from the web UI.

    -Do not, and I it cannot emphasize enough strongly, do not delete anything from the web interface before you delete the local databases on your hard drive (you can always return to contacts.live.com later to manage the contacts (remove, clean the unused or duplicates, merge duplicates etc.) if necessary after WLMsgr recreates local databases.)

    Once done your registry key should show that three databases total (assuming you are using only a Live ID in WLMsgr)-the main and shadow for that Live ID and a default value (if it is created by the program).

    You should have enough information to move forward or to ask additional questions.

    As I mentioned earlier that, at a minimum, an empty list of contacts would be at least some multiple approx. 24 MB. Since you use WLMsgr 2009, and it uses a primary and shadow, the minimum size of about for you with no contact would be approximately 72MB (24 MB for each - primary, shadow and by default). As well as the contacts are added, the primary databases and shadows will be size.

    Other topics presented in this thead element (but not significant) - comments below to close this loop

    S ' for the use of your Hotmail account in Outlook. This use is not related or significant to the database used by WLMsgr. Contacts in Outlook (when the mail is configured to use Pop3 or DeltaSync with Outlook Hotmail Connector) are stored in the Outlook profile contacts, and quite separate from the WLMsgr database (i.e. neither Outlook or WLMsgr program communicates or synchronize or share data with each other to keep the feature)

    FYI... not associated with 2009, but 2011 (for those who read along. WLM 2011 no longer uses the approach of two (primary and shadow) file for databases local contact so databases are smaller and also more robust in 2011 and better synchronize.  Finally, with respect to the use of 2009, wysiwyg... no other upgrades for 2009 are planned (the code was frozen for more than a year, the latest version (never) released in May 2010).

    Good luck.

    .. .Winston

    msft mvp mail

  • Delete and re-create a Service profile using the same address (HBA WWNP) WWNP pool

    Hi guys,.

    I have 8 services created profiles used by esxi boot via SAN. The cause is via SAN boot is very important for me the address of WWNP HBA.

    Now, I need to change the model vNIC used in these services profiles to include the option of the VM in the target.

    But for this I have to delete and recreate the model vNIC.

    I think that the UCS will not allow me to that I have unlink and delete the profiles of 8 services (I may be wrong)

    My question is.

    After I deleted a service profile, what is the best way to ensure that new services profile will be used the same address (HBA)

    used by the deleted profile service. ?

    Thanks in advance,

    My best regards,

    Hey,.

    I don't know why you need to remove the 8 SPs when changes (deletion) are on the vnic/HBA model.

    Address WWNP is being derived from a pool? right?

    What is the order of assignment? Default or sequential

    is this specific to only those 8 servers WWPN pool?

    I did a quick test when I remove model HBA he doesn't remove the vHBAs configured in MS.

    Thank you

    -Slim

  • the options are disabled copy, paste, delete, and organize objects

    HI: for some reason, the options are disabled copy, paste, delete, and organize objects () back, front, etc.). As much as I try, I select an object in my project, any the image I have to remove and does not allow for me to and try to reinstall the program and still no success. I do not know which might be. Help


    Adobe Edge animate CC V2.0

    Hi Merin,

    Thank you for your message.

    I'm not sure about the question. Please try to recreate the preferences driven by edge, file

    Restore preferences | Animate dashboard

    If this does not help then please provide us with a screenshot of test projects.

    -Devendra

  • Virtual RDM: mapping in the vm, VMFS folder file size

    Hello

    I just migrated an iscsi LUN previously managed the MS iscsi initiator (running inside a machine virtual w2k03) to ESX iscsi sw, preserving the data.

    I used RDM (raw device mapping) and I had to use 'virtual' because 'physical' hanged the VM at startup of the operating system.

    The iscsi LUN is 1 TB, with about 60GB used.

    I noticed that on the volume VMFS file mapping for the virtual machine is about 2 GB: happen when on the iscsi LUN more space will be used? And if it goes, is there a rule to calculate how much?

    I'm worried I might risk running out of space on the VMFS volume because of the mapping of RDM file...

    Thank you

    Guido

    It's just a pointer to the original disc of RDM.   I have a few MS Cluster in my setup. For 18 GB RDM Lun he creates about 100 MB.

    Thank you

  • The application import fails after you delete and import to workspace

    I DEV and PROD workspaces.

    Both on Oracle 11 g, Apex 3.1.0.00.32

    The two environments were created at the same time. Apex PROD workspaces were not initially created through the importation of DEV workspaces. To migrate applications exported us dev and imported the application prod with the same application ID.

    To allow the migration of page and component of the PROD, workspace was deleted then recreated via an import to workspace DEV.

    I deleted the workspace, but I did not remove the application first. I assumed that the applications and all the metadata would be eliminated. When I tried to import the application with the same ID than I was not deleted, it failed with the message below.

    ORA-20001: GET_BLOCK error. ORA-20001: Execution of the statement was not successful. ORA-00001: unique constraint (FLOWS_030100.WWV_FLOW_WORKSHEET_RPTS_PK) violated & lt; pre & gt; begin wwv_flow_api.create_worksheet_rpt (p_id = & amp; gt; 8617018538334033 + wwv_flow_api.g_id_offset, p_flow_id = & amp; gt; wwv_flow.g_flow_id, p_page_id is & amp; gt; 4003, p_worksheet_id = & amp; gt; 8615624563268070 + wwv_flow_api.g_id_offset, p_session_id = & amp; gt;) NULL, p_base_report_id = & amp; GT; NULL + wwv_flow_api.g_id_off


    I was able to create a new application that uses the same number of App. It's only the import of the latest version of the same app that has been in the workspace removed as I get failure. I guess that all the metadata do not get cleaned.

    Is it possible to manually clean the tables of flow? Or is there something else keeps me to import the same application to any workspace.

    TIA,

    Sam

    3.1.0 there was no constraint of cascade deletion between the tables of interactive reports and workspaces in order to remove a workspace would eliminate applications but not interactive reports. You have two options:

    (1) apply the 3.1.2 patch (easy and painless) and then repeat your steps.

    (2) access directly the flows_030100 schema and

    delete wwv_flow_worksheet_rpts where security_group_id =... 5512;
    commit;

    Scott

    PS You wrote "WS ID - 7747, 5512, 7757". Who should have 'ID - 7747, 5512, 7747 WS'?

  • I have a chase bank credit card that I have good ranking and what number do I call to talk to I tunes because he says, use a different card, it's the map I was buy everything what I tunes. Is it because I have challenged their load m

    I have a chase bank credit card that I have good ranking and what number do I call to talk to I tunes because he says, use a different card, it's the map I was buy everything what I tunes. Is it because I thought them charge me twi

    Can I have it please the number on I tunes support whether please or have them call me at * Leonardo B *.

    < personal information under the direction of the host >

  • When I open Thunderbird it shows download 1 of 27 messages, but only downloads one 1 and stops, I then mark as spam and delete it from the junk e-mail folder

    When I open Thunderbird it shows download 1 of 27 messages, but only downloads one 1 and does not download the other 26. I mark as spam and delete it from the junk e-mail folder. I press the button to get the Messages and the same thing happens again with the same message that was deleted before downloads and other 26 messages fail to download. How can I get rid of this email and download the rest of my emails?

    What is a POP account? Please confirm.

Maybe you are looking for