How to migrate exadata overall in data centers?

How to migrate exadata overall in data centers? Forklift (lift & shift) is only option for this kind of migration since we are talking about migration unit?

Best practices/experiences around these migrations?

Thank you

Aerts

Hello

We recently had a data center move and moved some exadata machines to a new location.

There are a few things to consider before the move is going;

(1) prepare the network on the new data center and make sure all connectivity (for example, you can remote access to it) work.  In our case, the new centre has same network IPs.

(2) download the seller who transported material Machines.

(3) on the last day before moving, stop the Exadata Machine (close the database, RAC nodes db stop, knots of cell, endless tape etc...)

(4) turn off the Exadata Machine

(5) disconnect all network cables.

(6) let the equipment cool.

(7) transportation to the new location and move the machine to fix the Bay and wait for the machines to be acclimated

(8) connect the network cables.

(9) power on Exadata.

I found a Support which also notes, you can view; What must be done when moving Cluster nodes to a new data center (Doc ID 1332423.1)

HTH,

Pradeep

Tags: Database

Similar Questions

  • Is it possible to migrate ESXi host between data centers, if so please provide a brief not

    Hi friends,

    1. is it possible to migrate ESXi host between data centers, if so please provide a brief walking distance.

    2 can we perform vMotion and Storage vMotion while ESXi is turned on.

    3. is it possible to extend the VMDK disk while it integrates snapshots in it.

    Best regards,

    Sirot Vijay

    Yes the vmotion and svmotion works but one by one.

    1 - vmotion is posssible to power on State, but you can't svmotion the vm simultaneously. The storage will remain same

    2 svmotion is also possible to power on the State, but you cannot vmotion virtual machine simultaneously. the host will remain the same.

    3 vmotion and svmotion is possible together when the vm is off power. the host and storage can be changed simultaneously on this State.

  • How to migrate a model of data from 4.0.1 to 4.0.3?

    I just started to use to shape this week.  I have a data model that is registered in the default workspace under the 4.0.1 area.  I installed the 4.0.3 version in a separate area.  How can I migrate the data model to the 4.0.3 4.0.1?  Just copy the top-level .dmd file and the directory of the default in the 4.0.3 4.0.1 deafult workspaces?

    Thanks in advance.

    Hello

    There is no this term a "default workspace. You can copy the file design.dmd and design directory to another location and started working with DM 4.0.3 here or you can work at the place where he is now. In the latter case, don't forget to change not the same design with DM 4.0.1 - you will lose all the new properties introduced in version 4.0.3

    Philippe

  • Several cold migration via PowerCLI on data centers

    Hi all

    Here's my problem.   I am trying to automate migration cold of the about 30 mV (obviously power off) of a data center to another in the same virtual Center.    I was able to migrate both through PowerCLI 1 VM by using the following script.  I used Onyx to help me with the basis for the script.

    $spec = New-Object VMware.Vim.VirtualMachineRelocateSpec

    $spec.datastore = New-Object VMware.Vim.ManagedObjectReference

    $spec.datastore.type = 'Datastore '.

    $spec.datastore.value = "datastore-1672.

    $spec.pool = New-Object VMware.Vim.ManagedObjectReference

    $spec.pool.type = 'ResourcePool.

    $spec.pool.value = 'resgroup-4017.

    $spec.host = New-Object VMware.Vim.ManagedObjectReference

    $spec.host.type = 'HostSystem.

    $spec.host.value = 'host-4018.

    $spec.disk = New-Object VMware.Vim.VirtualMachineRelocateSpecDiskLocator [] (1)

    $spec.disk [0] = New-Object VMware.Vim.VirtualMachineRelocateSpecDiskLocator

    $spec.disk [0] .diskId = 2000

    $spec.disk [0] .datastore = New-Object VMware.Vim.ManagedObjectReference

    $spec.disk [0].datastore.type = "data store".

    $spec.disk [0].datastore.value = "datastore-1672.

    _this $ = Get-view -Id ' VirtualMachine-vm-4029'. "

    _this $. RelocateVM_Task ($spec, "defaultPriority")

    What I'm trying to do now, is to use variables for the values of the data store, pool, host and Get-View to the virtual machine itself to run a migration of more than 1 at a time.  So here's what I tried to do

    to connect-viserver VCENTERSERVER.domain.local

    $vms = Import-CSV "G:\temp\scripts\relocate.csv".

    {foreach ($vm to $vms)

    $spec = New-Object VMware.Vim.VirtualMachineRelocateSpec

    $spec.datastore = New-Object VMware.Vim.ManagedObjectReference

    $spec.datastore.type = 'Datastore '.

    $spec.datastore.value = $vm. DatastoreName

    $spec.pool = New-Object VMware.Vim.ManagedObjectReference

    $spec.pool.type = 'ResourcePool.

    $spec.pool.value = $vm. ResourcePoolName

    $spec.host = New-Object VMware.Vim.ManagedObjectReference

    $spec.host.type = 'HostSystem.

    $spec.host.value = $vm. ESXHostName

    $spec.disk = New-Object VMware.Vim.VirtualMachineRelocateSpecDiskLocator [] (1)

    $spec.disk [0] = New-Object VMware.Vim.VirtualMachineRelocateSpecDiskLocator

    $spec.disk [0] .diskId = 2000

    $spec.disk [0] .datastore = New-Object VMware.Vim.ManagedObjectReference

    $spec.disk [0].datastore.type = "data store".

    $spec.disk [0].datastore.value = $vm. DatastoreName

    _this $ = Get-view -Id $vm. Name

    _this $. RelocateVM_Task ($spec, "defaultPriority")

    }

    Here's what my CSV file looks like.  I used PowerCLI for find the real ID for each object.

    Name, DatastoreName, ResourcePoolName, ESXHostName

    VirtualMachine-vm-4029,datastore-4557,resgroup-3694,HostSystem-host-3729

    VirtualMachine-vm-4030,datastore-4558,resgroup-3694,HostSystem-host-3731

    Here is the error message I receive when you run the script

    Exception by calling 'RelocateVM_Task' with '2' or the arguments: "the object has already been deleted or was not completely created.

    G:\temp\scripts\RelocateMOD.ps1:25 char: 23

    + $_C. RelocateVM_Task < < < < ($spec, "defaultPriority")

    + CategoryInfo: NotSpecified: (:)) [], MethodInvocationException)

    + FullyQualifiedErrorId: DotNetMethodException

    Exception by calling 'RelocateVM_Task' with '2' or the arguments: "the object has already been deleted or was not completely created.

    G:\temp\scripts\RelocateMOD.ps1:25 char: 23

    + $_C. RelocateVM_Task < < < < ($spec, "defaultPriority")

    + CategoryInfo: NotSpecified: (:)) [], MethodInvocationException)

    + FullyQualifiedErrorId: DotNetMethodException

    Any help is greatly appreciated.

    It's one of the drawbacks of the Onyx, the generated code is endless.

    There is no need to use the ID in the CSV file, simply use the names.

    And there is no need to specify a data store for the vDisk if you migrating the data store even other files such as the virtual machine

    connect-viserver VCENTERSERVER.domain.local
    $vms = Import-CSV "G:\temp\scripts\relocate.csv" foreach ($vm in $vms) {
      $spec = New-Object VMware.Vim.VirtualMachineRelocateSpec  $spec.datastore = (Get-Datastore -Name $vm.DatastoreName).ExtensionData.MoRef  $spec.pool = (Get-ResourcePool -Name $vm.ResourcePoolName).ExtensionData.MoRef  $spec.host = (Get-VMHost -Name $vm.ESXHostName).ExtensionData.MoRef
    
      $vmObj = Get-VM -Name $vm.Name | Get-View  $vmObj.RelocateVM_Task($spec, "defaultPriority")
    }
    

    And your CSV might look like this

    Name, DatastoreName, ResourcePoolName, ESXHostName

    VM1, DS1, Pool1 ESX1

    VM2, DS1, Pool2, ESX2

  • Virtual data centers how to a campus of double site?

    We begin to plan for a migration of vSphere 4.1 and 5.1.  We have two data centers several miles share a link 10 gig.  In our current setup, we have a virtual data center that includes the host esx on both sites.  VMotion and storage vmotion work well on the link 10 gig.  HA and DRS are not currently configured, but it will be included in the new configuration.  I'm looking for the advantages and disadvantages to continue having a virtual Datacenter, against two, one for each physical site that includes only the servers at this place, that is, buildling1-vdc, would include esx1 bldg1, bldg1-esx2, etc., and construction2-vdc, would include construction2-esx1, bldg2-esx2, etc.. We would be able to preserve the beaches of IPS to each site in the case of a link failure.    As I understand it, we would not power of vmotion or HA and DRS established between the two virtual data centers.  Other have a virtual infrastructure of several location connected by links broadband?  If you do, how much virtual datcenters you have and how they are configured?

    Please ask questions if you need more specific information to answer the question.

    a "Datacenter" vCenter object is a limit for the vMotion and distributed vSwitches. So, if you want to migrate virtual machines between the buildings / clusters these groups must be part of the object of data center. Also if you want to have similar networks on both sides and you want to use Distributed vSwitched then you will need to have both part of clusters of the same domain controller so that the VDS objects are pushed down.

  • Palm Treo 700 p phone replacement - how to migrate some applications/data/e-mail?

    Hi all

    The earpiece on my Treo 700 p has stopped working and Verizon has agreeded to replace the phone.  Unfortuantely, I have of many e-mails, texts, contacts, applications, etc. that I would like to transfer via.   I understood how to migrate my texts and call in the log (via the TreoDesktop 3rd party software), but how can I move everything else (i.e. the versamail email, applications, etc.).  I am a member of the Palm backup beta, but do not know if that would cover everything I want.

    In addition, I have the possibility of having two phones at the same time to make the data migration.  I have to back up, clean the phone, Exchange it for a replacement, then reload all existing data out there.

    Can someone help me with suggestions on how to make the migration of data/backup?

    Thank you.

    -Bobby

    If you move to an identical device HW-wise, the simplest solution is to make a backup to SD card (NVBackup is the excellent freeware solution).

    When you receive your new device, pop in the SD card, run NVBackup from SD card and restore.

    Simple as that

    Message is about: Treo 680 (unlocked GSM)

  • How to migrate data from a source to multiple targets (tables)?

    How to migrate data from a source to multiple targets (tables)? Describe the General steps, please or point me to a tutorial

    Yes, a table in a mapping element can be source and target at the same time (i.e. a target can be reused as a source for the rest of the map on the right side of the table).

    Don't forget to check the order of loading (in the property map), to ensure that the reused as source is loaded before the final table target table.

    I tested it and it works. However, the documentation is not said in the link I gave you above:

    "Each element of data store that has entries but no exits in the logical diagram is considered a target."

    Usually, I tend not to do. I am in favour of a Divide and Conquer approach and try to have my mapping as simple as possible. It is easier to debug and maintain.

  • How to create the new folder in the title of data centers

    I have a data center called 'DR', which I can't seem to create a folder under the root with PowerCLI. Whenever I try to try: new-folder-name-location Test (Get-Data Center DR) it does not place the folder everywhere perceptible in the GUI. I only see it if I do: Get-folder or Get-file-name Test.

    Any help would be appreciated.

    Thank you.

    You are in the computers view virtual and models of vSphere Client by chance?  Because the file is not there.  It'll be in the hosts and Clusters discovered.  You can tell by the 'Id' of the folder property in your screenshot.  The 'h' in "File-group-h265" essentially tells the view of "Hosts and Clusters".  You should see a 'v' here instead of him was in the models and virtual computers discovered.  An excerpt from the "New folder" command help page for help:

    -Map

    Specify a container object (for example, a folder, a list of resources and so etc.) where you want to place the new folder. If a data center is specified for the - Location parameter, then the file is created in the folder "hostFolder" and contains hosts and clusters. The "hostFolder" is a system folder and is guaranteed to exist.

    Since a data center can contain folders, objects VM and host and cluster, you must specify what "view" to create your folder in.  There are some files hidden (for lack of a better term) that technically the child objects are data centers.  We're called 'vm' and another is called 'host '.  So, if you were to run this command:

    Get-Folder vm
    

    You should get a record returned for each datacenter, you (and all the folders that you simply named 'vm' because the folder names need not be unique).  You could also run ' host of Get-file ' and also to get a folder of "host and Cluster view" for each datacenter you have.

    Given that the cmdlet New-folder by default is the 'host' of the data center specified folder, a way you could force it to be created in the "vm" folder with a command like this:

    Get-Folder vm | ?{$_.Parent.Name -eq "DR"} | New-Folder "YourNewFolderName"
    

    Maybe it's not the quickest way to accomplish the task, but it should work for you, assuming that my intuition need you according to the evil the vSphere Client inventory is correct, of course.

  • Merger of two data centers separated with a different license.

    Due to the fusion of the IT departments, we have two data centers and vCenter servers.  The IP network is a network of flat class.  ISCSI are on two physically separate networks.

    Data Center 1 (DC1)

    vCenter Foundation 5.5

    3 hosts vSphere 5 Enterprise (6 cpu)

    1 series 6200 Equallogic SAN

    Data Center 2 (DC2)

    vCenter 5.1 Standard

    2 hosts vSphere 5 Enterprise (4 cpu)

    1 SAN Equallogic 4000 series

    We would like to:

    1. move the Standard of DC2 on DC1 and the license to the Foundation from DC1 to DC2 (Swap licenses)
    2. import of DC2 in vCenter on DC1 and then unmold on DC2 Foundation license.
    3. Finally have two data centers operating from DC1 vCenter running Standard Edition 5.5

    Is this possible at all?  How would we do this.

    Thanks in advance

    With licenses owned by the same company, the steps you mentioned should be ok.

    However, from a technical point of view, you can plan the migration according to the features you use. A few things you can do is to disable HA and DRS on DC2 environment before migrating the hosts to DC1 (just to avoid potential problems), and you can also make sure for example on DC2 data store names do not match the names on DC1 to avoid confusion after the migration.

    Unless the special functions are used on DC2 which must be supported before the migration, you can simply unplug the hosts of DC2 and add them to a DC1 with operational virtual machine. Host CPU licenses must move automatically with the hosts.

    André

    PS: TheSMO: licenses are based on major versions, i.e. 5.x., so there is no need to up - or their decommissioning in this case.

  • VMotion between data centers

    We are constructing a new environment VI 3.5 that will match our new approved conformity existing SOPS all of the virtual machine in the environment will have to be moved off the power as soon as the new cluster\datacenter is built.  I am trying to determine the practical way of best\most to do - what I'm basically not clear is if I can migrate a virtual machine between 2 data centers or not.

    Any help on how best to do that is very appreciated-

    Steve

    wouldn't that be nice.  You can always stop the virtual machine and a cold migration.

  • Using node NHP groups in multiple data centers

    Hello

    I was looking for information, I'll implement a distributed deployment of ISE.   We have two data centers, each will have its own group of PSN node (load balancing), I need a strategy where we can ensure that all the DNA do not point to a single group of PSN node.  In the config switch that I only noticed that the radius server registration option where first is referenced and secondary IP is used only if the primary Radius Server is unavailable.  We have many sites of the direction we want to deploy ISE, we would like to distribute the RADIUS AuthC/AuthZ evenly between the two DC.

    Thank you

    -Amin

    Just so we are clear, ISE node groups did not-load balancing, you need a for this external load balancer. If you are actually using a balancer for each domain controller, then you might have half of your switches just manually use a vip for primary and secondary school, and the other half upside down. Also, if you use aaa server groups in your switch, you can also do a local switch 'balancing', based on the current session how are radius on each server in the group.

    http://www.Cisco.com/c/en/us/TD/docs/iOS-XML/iOS/sec_usr_rad/configurati...

  • How to migrate from Windows XP to Windows 7 non-destructively?

    How to migrate from Windows XP to Windows 7 to non-destructively?... meaning is there a way to do this without backup data (on the XP disk), the Windows 7 upgrade and then restore the XP backup data?

    Moreover, since the structures of folders (I am told are slightly different) XP and Windows 7 where can I restore the data from?

    for example where my Documents from XP to go on the side of Windows 7? and so on... there at - it a 'table of equivalence' for this?

    Thank you.

    The upgrade to Windows XP?

    Please read these instructions carefully and completely before you begin installing Windows 7: there are important steps that you must follow to upgrade your PC from Windows XP to Windows 7 in order to preserve your files and settings.

    Before you begin, you'll need to backup all your data to an external storage device, and you will need all the installation discs for the programs that you want to keep. Please make sure that you have an external hard drive (see details below).

    More detailed instructions are available at windows.microsoft.com/upgrade-windows-xp. Here are the basic steps.

    1. start Windows Upgrade Advisor (windows.microsoft.com/upgradeadvisor) to see if there are known issues that may affect the installation and the question of whether you should install the version of 32 or 64 bit Windows 7.

    2 back up your files and settings on an external hard drive using Windows Easy Transfer (windows.microsoft.com/windows-easy-transfer). If you do not have an external hard drive, you will not be able to use Windows Easy Transfer. Alternatively, you can copy the files you want to keep on a USB stick, CD or DVD.

    3. you will need to manually reinstall your programs, such as Microsoft Office, after I installed Windows 7. Gather the installation for your programs and all partner/license product key discs. You may be able to download programs from the Internet. For example, Windows Live Messenger can be installed from the download.live.com/messenger.

    4. Insert the Windows 7 DVD in your PC. When asked "which type of installation you want. Click on "Custom (advanced)."

    5. when Windows 7 is installed, use Windows Easy Transfer to restore your files and settings.

    If you are not comfortable Windows 7 installation, check with a local retail or the services of the PC company store to see if they offer upgrade services.

    http://www.notebooks.com/2009/10/13/WinXP-to-Win7/

  • How to migrate code from one environment to another in the MFT 12 c

    Hi all

    How to migrate code from one environment to another in the MFT 12 c.

    Thank you and best regards,

    Tilquin.

    MFT has t2p plugin that can be used to migrate the metadata for production test.

    There is an export option in the transfer page in the MFT UI that can be used to export metadata data transfer.

    This exported zip can be imported in any other environment after making the necessary changes.

  • Custom data centers

    I created several CDC that we use for the management of capacity, but recently noticed that it does not automatically update with the new groups added to the environment in. Does anyone know how I can get a CDC auto add new members in the area which I define as my CDC

    Here it is my CDC production and as you can see the new cluster its not added. It doesn't seem to be a parent object that I can select (in this case windows or linux) that will automatically add new groups

    CDC.png

    Today, custom data centers do not have an automatic fill criteria are met that statically. However, I agree with you that it would be an advantage to have this capability, similar to the how custom groups to have rulesets. Others that the obvious benefits of Datacenter Custom ojcts be exploited with WLP capabilities, I use these global organizational construction groups of cluster for the analysis of high level. This high-level analysis is in the form of capacity planning, calculation, efficiency and so on. This cap of model capabilities are not present in custom groups (CGs simply show the distribution of the population), which make the data centres custom unique positions for the aggregation of CLuster and analysis without the need to be creative with the SMs and the views to try to make them 'cap-model-like. "

  • Copy of models between data centers

    Hello

    I have a couple of VM being cloned to models. These models need to be copied in other data centers VMWare. I got it all to a using PowerCLI PowerShell script. If I understand well I can't do just a simple copy of a data center to another. First of all, I need to upload the template, then download to the data center target to get these models where they do.

    Does anyone have an idea how I could do this task and it is able to be accomplished using PowerCLI?

    TIA

    OK, you could do something in this direction.

    $vmName = "MyVM.

    $templateName = "template".

    $tgtDC = "dc".

    $dc = get-data center-name $tgtDC

    # Get the VM source

    $vm = get-VM-name $vmName

    # Clone VM and move it to the target DC

    New-VM - $vm - name $templateName VM | Move-VM-Destination $dc

    # Convert the VM cloned a model of

    Get-VM-name $templateName | Set-model

Maybe you are looking for

  • Cannot use the mouse to copy and paste using firefox21

    HelloWhen I use my browser firefox21 and use the mouse to select textI would like to copy then right click on the mouse and select copyThen, the highlight on the text disappears and won't let me copy and paste using the mouse I tried to reset firefox

  • Sluggish DAQmx output after a minute

    Hello world I'm running a VI with alternating outputs analog and analog input controls. The output is a waveform that is customized with a 0.5 second delay.  After having sent the wavefrom to analog output, I have samples of an input analog 0.05 seco

  • Vista - start normally?

    Good evening Part of the last bet to windows update offered me, "nVidia Display - GeForce NVIDEA 8299 MG" she has not installed and showed error 800705 b 4. But I find that I don't have this driver. Now, Vista will not boot normally. The screen looks

  • SX-20 No. presentation on the outlet end.

    FW: TC 5.1.8 No presentation is transmitted at the end after you press the presentation button but the presentation was properly posted on output HDMI 2 in the end close.

  • Effective method to round double on 0.05

    I have a question on double rounding on 0.05As much as I know there is no class method that is able to do this. To reach this round, I have the following code:Example:164.67-> 164,70173,33 - > 173,35-> 0.05 0.02 double calculatedQuantity = 0.0;   //