Migrating SQL data from iSCSI LUNs on one NetApp to another

Hi....
I have a clustered pair of SQL 2012 servers which are using the Microsoft iSCSI initiator service to attach to some LUNs on a NetApp storage system.  I am trying to migrate the data on these LUNs to a different NetApp system and am not 100% sure how
I should do this.  I have dedicated LUNs for:
Database data
Logs
TempDB data
TempDB logs
Quorum
Backup
Each LUN is mapped to a drive.
Does anyone know the best way to go about this?  I was going to detach all clients from the database, stop cluster services on the standby node, copy the data from active node to the standby node on the new LUNs with the same drive mappings, then stop
all services on the active node, followed by turning on services on the standby making it the active.
I have a feeling this isn't going to work as I expect so I figure I would ask the question.

Hi,
I recommend you check out the following articles:
WINDOWS 2008 / 2008 R2 SAN Migration
http://blogs.technet.com/b/hugofe/archive/2012/07/04/windows-2008-2008-r2-san-migration.aspx
Swapping a new larger LUN for an existing LUN
http://social.technet.microsoft.com/Forums/en-US/cfeac1ce-760f-4a92-a20c-02e4181b876b/swapping-a-new-larger-lun-for-an-existing-lun
Best Regards,
Tracy
Tracy Cai
TechNet Community Support

Similar Messages

  • Process to migrate configuration data from one BW development system to other

    Hi SAP Gurus,
    We need to migrate configuration data from one BW system DE1 to DE2.. Both systems are SAP net weaver  7.3.
    DE1 is BW pre-production system and DE2 is BW DEV.
    No transactional  data required.
    Please share a document if available.
    Kindly, let me know the procedure for Remote Client copy or client export/import with steps.
    Also let me know the pre-requisite for these activities.
    Thanks,
    Avadhesh Sharma
    +91 8095226536

    Hi,
    Remote Client Copy (SCC9)
    Remote client copy is performed in rare situation. When the client copy is done
    between two different SAP systems, the copy is called remote client copy.
    Before remote client copy is performed, a RFC connection must be set between those
    systems using SM59.
    1. Check RFC connection is working fine between two systems you want to perform
    remote client copy using SM59
    2. create client in the target system you want to copy the client
    3. login to target client using user SAP* and password PASS
    4. execute tcode SCC9 and select the RFC for the source system
    5. select the profile you want to copy like SAP_ALL
    6. select source client number you want to copy
    7. Select source client master data , mostly it is the same client number
    8. Now click on schedule as background job.
    9. Leave the background server field blank.
    10. Click schedule.
    11. Select Immediate from next screen.
    12. Save the screen.
    13. Client copy is scheduled now as a background job and client copy process started.
    14. The progress can be monitored using tcode SCC3
    Client Export/Import
    A client transport consists of two steps:
    First a client export extracts client data from the source client
    to files at the operating system level. Then the data is imported
    from the operating system files into the target client.
    To perform a client export, follow these steps:
    1. Log on to the source client. From the SAP initial screen,
    choose transaction SCC8 (Client Export). Select the data to
    be copied using a profile.
    2. Indicate the target system to which the client will be copied.
    The target system must be defined in TMS as part of the
    transport domain.
    3. Begin the client export. Because copying is a lengthy
    process, use scheduled background processing.
    Do not run any other client copy tool before the
    data export is finished.
    This export process will generate up to three data files at the
    operating system level:
    • RO< number >: this file contains cross-client data
    • RT< number >: this file contains client-specific data
    • RX< number >: this file contains SAPscript texts
    Depending on the type of data selected through the client
    transport profile, the client copy command files added to the
    buffer of the target system are as follows:
    • <S-SID>KO<number>: this file is for cross-client data
    • <S-SID>KT<number>: this file is for client-specific data
    • <S-SID>KX<number>: this file is SAPscript texts
    The client export change requests are not imported when an
    Import all takes place. Therefore, you must import these requests into the target client
    using TMS. Choose one of the transport requests of the client transport in the Transport
    Management System (TMS). The other transport requests belonging to this client
    transport are then automatically added in the correct order.
    After the import process has completed, post-import activities are required for object
    generation steps. After completing the import, log on to the target client. From the SAP
    systems initial screen, choose transaction SCC7
    Regards,
    Chandu

  • I migrated all data from old PC to new and iTunes successfully transferred to new PC. When I click on a song it says it cannot locate the original. How does one map iTunes file to iMusic to enable play from original files ?

    Subject: Migration
    I migrated all data from old PC to new and iTunes successfully transferred to new PC. When I click on a song it says it cannot locate the original. How does one map iTunes file to iMusic to enable play from original files ?

    Subject: Migration
    I migrated all data from old PC to new and iTunes successfully transferred to new PC. When I click on a song it says it cannot locate the original. How does one map iTunes file to iMusic to enable play from original files ?

  • How to migrate the data from DEC RDB 5.1 to Oracle 11g

    Hi,
    As part of my project, we need to migrate the data from DEC RDB 5.1 present on Alpha server with VMS 6.1 OS into Oracle 11g. The size of the data in DEC RDB is around 40 GB.
    Could you please suggest various ways of getting this done in easy and simpler way?
    Thanks in advance.

    Hello,
    when Oracle bought Rdb from Digital Equipment Corporation (DEC) in 1994, the name of the product changed from DEC Rdb to Oracle Rdb. Meanwhile the actual version of Rdb is 7.2, so you are on a VERY old version. And that excludes the suggestions from the mentioned note to use a database link from Oracle RDBMS to Rdb, that is simply not possible with that old version of Rdb.
    But Rdb 5.1 knew already the Rdb Management Utility (RMU) - I just checked that with Rdb 4.1 which is even older.
    There are two commands that are helpful for your task.
    RMU/EXTRACT - that writes the metadata into a file. That output helps you to build a script to create all the objects in your target database.
    RMU/UNLOAD - that writes the data of each table into a formatted file (one file per table). That output can be used by the SQL*Loader to load your data into the target database.
    You can read all details about these commands in the online help on your Alpha. At first, issue the HELP command and look in the output list whether it lists a command RMU or RMU51. Then run that command:
    $ help rmu /extract
    and
    $ help rmu /unload
    Replace rmu by rmu51 if the help command shows you that rmu51 exists but not rmu.
    There is one caveat. Do you use blobs in your Rdb database? If you don't know that, create an the output with RMU/EXTRACT and search the output file for the string LIST OF BYTE VARYING. If there are none then you have no blobs. If you have some you need to take more care of them, they can't be unloaded into a formatted file, that must happen programmatical. If you have such fields then let me know, then I'll tell you how to get them out of your Rdb database.
    Best regards
    Wolfgang
    P.S.: For Rdb related questions it is better to ask in our Communities at https://communities.oracle.com/portal/server.pt/community/rdb_product_family_on_openvms . That forum is watched by Rdb Support and Development.

  • I need to copy data from a table in one database (db1) to another table in

    Hi
    I need to copy data from a table in one database (db1) to another table in another database (db2).
    I am not sure if the table exists in db2,,,if it doesnot it needs to be created as well data also needs to be inserted...
    How am I supposed to this using sql statements..?
    I shall be happy if it is explained SQL also...
    Thanking in advance

    How many rows does the table contains? There are manyway you can achieve this.
    1. export and import.
    2. create a dblink between two databases and use create table as select, if structure doesnot exists in other database, if structure exists, use, insert into table select command.
    example:
    create a dblink in db2 database for db1 database.
    create table table1 as select * from table1@db1 -- when there is no structure present
    -- you need to add constraints manually, if any exists.
    insert into table1 select * from table1@db1 -- when there is structure present.
    If the table contains large volume of data, I would suggest you to use export and import.
    Jaffar

  • How to migrate the data from DB to another DB

    Hi folks,
                 In my project I have one requirement. Let me explain in detail we are maintain two databases one for
                 master database called *GIIS* and one is history database HIST. Both DB version is 10g R1.
                 (Both DB’s have same no table as well structures)
                 1.  The GIIS database contains nearly 400 tables (master table as well as temporary table)   
                       each Master table having it’s own temporary table.
                 2. Whenever we made the entry first it will go to temporary table after authorized that entry it will move to the master table
                 3. But the temporary table contains the data after move to master table .
                 4.     The temporary table data’s will be move to the HIST database each and every day at the night.
                    This migration we done through the procedure.  After migration complete the temporary table data’s will de deleted.
    My Question:
               1.     Whether it’s good practice to migrate the data from GIIS DB to another HIST DB using oracle stored procedure.
                     (we created the DB link from GIIS to HIST) 
               2.     If not can any one suggest me the way to migrate the data from GIIS to HIST.?
               3.     Is there any other possibility to migrate the data from GIIS to HIST with out using procedure?Thanks
    Arun

    Arun wrote:
    Hi Mr.Aman Brother
    First of all sorry . I am not saying that don't command my requirement. Just i want know the way of migrate the data from one DB to another DB.
    you saying that IMPORT/EXPORT is one of the way to do migration.
    But in client side they don't know how to do the IMPORT & EXPORT the database..
    Can you suggest me the another way to do that
    Arun,
    If the client doesn't know how to do exp/imp, I would really doubt and would be immensely concerned before suggesting the client any other way. If they don't know, tell them that there is a concept called test database which is used for learning so they should invest time to learn this technique since the other options suggested by fellow members are far more tougher than this one.
    Aman....

  • Urg req: Migration of data from 1 category to another - Error with 5 files

    Gurus,
    I am trying to migrate the data from one content category to another and it woks just fine with the standard sap report:DMS_RELOCATE_CONTENT.
    We moved all the documents except 5 files, when we use the report for the DIR's the content server shuts down automatically.
    I tried to read the file from SAP (CV03N) and the same thing happens. Can anyone pls suggest any solution for the issue. If we can atleast read the file we can check it into other content category manually but the challange here is to know what is causing the content server to be down.
    Appreciate your suggestion ! !
    //Madhav.

    Hi,
    could it be that you have also raised a SAP support message on this issue? Because I remember this kind of scenario and I forwarded a support message to the Content Server experts some days ago. At the moment the Content Server development team is analysing the issue.
    So if this is you message I would kindly ask you to wait for the reply of the development expert. Otherwise please tell me so I can update you with the findings too.
    Best regards,
    Christoph Hopf

  • Display Data from multiple models in one table

    Hi Experts,
    Is it possible to display data from multiple models in one table smltnsly.
    I have created a table dynamically.Now I would like to display data from multiple models... If this possible,can anyone give me a lead as to how to do it..
    Regards
    SU

    Hi
    Your Model Nodes be
    Model1
    ---Output_Model1
    Attrib1
    Attrib2
    Model2
    ---Output_model2
    Attrib1
    Attrib2
    and the value node is
    ValueNode
    ---Attrib1
    ---Attrib2
    Now the coding.
    int size;
    IPrivate<ViewName>.IOutput_mode1Node  node1 = wdContext.nodeOuptut_Model1();
    IPrivate<ViewName>.IValueNodeElement elem;
    size = node1.size();
    for(int i=0; i<size; i++)
       elem = wdContext.createValueNodeElement();
       elem.setAttrib1( node1.getOutput_Model1ElementAt(i).getAttrib1() );
       elem.setAttrib2( node1.getOutput_Model1ElementAt(i).getAttrib2();
       wdContext.nodeValueNode().addElement( elem );
    similar code for Model Node 2
    Regards
    Abhimanyu L

  • How to get the data from multiple nodes to one table

    Hi All,
    How to get the data from multiple nodes to one table.examples nodes are like  A B C D E relation also maintained
    Regards,
    Indra

    HI Indra,
    From Node A, get the values of the attributes as
    lo_NodeA->GET_STATIC_ATTRIBUTES(  IMPORTING STATIC_ATTRIBUTES = ls_attributesA  ).
    Similarily get all the node values from B, C, D and E.
    Finally append all your ls records to the table.
    Hope you are clear.
    BR,
    RAM.

  • How to fetch data from different sources into one source (like into Ztable)

    hi friends,
    As per our client requirements they want to develope an Inventory and an Ontime delivery report in BO on top of Oracle database.
    Situation is some thing like they have ECC 6.0.and they want to collect all inventory and ontime delivery data at one place.According to me that could be one Ztable in which we can gather all data.Apart from that they are going to use Data Integrator in which they can directly fetch the data from R/3 system(They dont want to have BI system) and put all data in Oracle DB.On top of ORacle BO person can develop BO reports.
    My question is how to fetch all data at one place and what are the tables going to be use.
    kindly help me out as its very important project.
    Thanks
    Abhishek

    The following is my standard reply to those who need to get old data from a backup in one account and add it to another account.  The method described here may be applied to your case.  It would be a bit of a long process, though.
    When connected to the account you want to GET data from, Go to Settings>iCloud and turn all data that is syncing with iCloud (contacts, calendars, etc.) to Off. 
    When prompted choose to keep the data on the iPhone. 
    After everything is turned off, scroll to the bottom and tap Delete Account.  Next, set up a new iCloud account using a different Apple ID and turn iCloud data syncing for contacts, etc. back to On.  When prompted, choose Merge.  This will upload the data to this new account.
    Note that this only affects the "Apple data" like contacts, calendars, reminders, etc.  Many third party apps also use iCloud to store data files there.  These files may be lost in the process, unless the apps also keep the data locally on the device.
    NOTE:  Photos in the photo stream (if you use it) will not transfer to the new account.  It is advised that you save the photos to a computer before performing the account switch. 

  • I can't migrate my data from my old pc to my new macbook pro

    Hi,
        I have been trying to migrate my data from my PC to my new mac but it always seems to fail.
    At first, I would begin the migration assistant and then after a while the PC would just crash.
    But then I finally thought I managed to get it working. It said that process was complete (on both the PC and mac), but there was no data on my computer and no music in my iTunes.
    If anyone has any advice I would really appreciate it!!
    PS I also have an Ethernet cable if that's of any use but I don't know how to use it.

    I suggest you stop using the Migrastion Assistant. Simple fact is, as you have found out, that it does not work most of the time and when it fdoes actuall transfer data it doesn't do it very well.
    Just network the 2 computer together over your LAN and copy and past the files you want to move to the Mac.
    Otr use an External drive, formatted either FAT32 or exFAT (doinig the formatting on the Windows PC) and then copy to the external from the Win PC and then copy from the external to the Mac.
    You'll be happier.

  • Migrate Cal-Data from  V3.0 to OCS

    We plan to migrate the data from the calendar version 3.0 on AIX to the OCS R1 Calendar. After exporting (unicpoutu) an importing the data the descriptions and the acls are missing. They are not in the export-file. Is there any other way to migrate the data?
    Bye
    Michael

    We plan to migrate the data from the calendar version 3.0 on AIX to the OCS R1 Calendar. After exporting (unicpoutu) an importing the data the descriptions and the acls are missing. They are not in the export-file. Is there any other way to migrate the data?
    Bye
    Michael

  • Creating SQL Date from DD/MM/YYYY request parameters

    G'day,
    I have question regarding creating SQL Date so that it can inserted into MySQL database. In my JSP screen I have two drop downs boxes (One for day and one for month) and a textbox for year.
    In my servlet I want to make a SQL date object so that I can insert it into the database. Right now what I do is create GregorianCalendar object by passing year, month and day integers. Then I create java.util.Date object using GregorianCalendar's getTime method. Finally I create SQL Date object by using java.util.Date's getTime method.
    Iam having problems using this method. When the date gets inserted in the database the month is one more then it should be. (e.g instead of date as being 20/10/1973 it will be 20/11/1973).
    What is a better way to create SQL Date object?
    btw, Iam using PreparedStatement's setDate method that is why I want to create SQL Date object.
    Thanks for your help!

    Another way is to use the SimpleDateFormat class to convert that String to a Date object, and then convert that to SQL date the same way you already do. That has the advantage that you don't have to put in all that logic you already have (right?) to check that the month is between 1 and 12, and that the day is between 1 and whatever depending on the month...

  • Help with migrating user data from one account to another

    I am on a G5 with 10.4.11. I installed FCP studio 6 and everything works fine except compressor. I have had only one user account on this mac (i will call it account 1). I was told to create another account (account 2), log on and see if compressor works. It does. Basically there are files missing on account 1 and compressor won't run. I have installed 3 times and no change.
    Anyway I was told to migrate all my user data from account 1 to account 2. I have been looking at threads and want to make sure I am doing the right thing. I found a way to close. Please see if this works. IT may be from the tiger forum:
    pick a short user name for your new account. then run the following terminal commands
    sudo mkdir /users/newshortname
    sudo ditto ~ /users/newshortname
    You'll have to enter your admin password (which you won't see) after the first command. that's normal. This will copy your current home directory to /users/newshortname. Then go to system preferences->accounts and create a new account with the short name newshortname. You'll get a popup saying that a home directory by that name already exists and asking if you want to use it. say yes.
    Anyway, I would like to migrate everything from account 1 to 2 and have all preferences...everything. I would also like to be able to delete the old account...account 1 and rename account 2. Since this is a home MAC, I really don't need it PW protected. I would like this MAC to just use my new account 2 at start up.
    Please ask me any questions. This is my editing MAC, and I can't get around inside the OS. I know FCP like the back of my hand, but don't want to screw up this computer.
    Thanks in advance.
    Message was edited by: Nelson May

    Yeah, you should be able to move most of it by changing permissions.
    Network settings could be any/all of these though for instance...
    /Users/YourUserName/Library/Preferences/ByHost/com.apple.networkConnect.<12 digit number>.plist
    /Users/YourUserName/Library/Preferences/com.apple.internetconnect.plist
    /Library/Preferences/SystemConfiguration/preferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
    /Library/Preferences/com.apple.sharing.firewall.plist
    /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist
    /Library/Preferences/com.apple.networkConfig.plist
    /Library/Preferences/SystemConfiguration/com.apple.nat.plist
    /Library/Preferences/com.apple.print.FaxPrefs.plist
    As well as the old Keychain & cookies from your Browser.

  • Regarding Batch Jobs for migration of data from client DB to our local DB

    Hi Folks,
    GoodDay, Previously I worked as a Oracle Developer and recently shifted into a BIG organisation as PL?SQL developer. Here my base work is with INTERFACES(Stored Procedure). That is retrieving data from client DB and need to put the data in our staging tables. For that i created 2 INTERFACES(stored procedures). One is for one time migration. No need to run on regular basis. The second one is to run regularly why because if any updations are done in client DB that should be replicate to our DB. For that we need to run a BATCH JOB regulary 24X7 basis.
    But i dont have any working knowledge on BATCH JOB creation and running. Please let me guide on this issue ASAP.
    Regards,
    Ramesh.

    You can try
    dbms_job(9i)
    or
    dbms_scheduler(10g)
    just out of curiosity.. tell me if you are interested...
    what you were doing as a "oracle developer" ( is it like writing only "sql" )...

Maybe you are looking for

  • Report Display Issue

    Dear All, I have a report as follows: >>PO        PO Item       GRN      GRN Item        PO Qty  GRN Qty >>4700       10            5000          1                   100        25 >>4700       10            5001          1                   100      

  • Propagation error

    how to clean up propagation error? 1- Oracle version 9.2.0.1.0 2-I have three instance bd1, bd2, bd3 in different machines 3-The 3 instance can communicate between them via network. 4-I have setup succefully streams environnement bidirectionally betw

  • Open in new tab in browser

    Anyone know if it is possible to open in a new tab in a suitable browser rather than open in a new window? Doug

  • How do I merge my LR4 and LR5 .lrcat?

    I just upgraded to LR5 from 4. I see there is in my Pictures folder: Lightroom 5 Catalog Previews.lrdata Lightroom 5 Catalog.lrcat Lightroom 4 Catalog.lrcat Q: How do I merge these two catalogs into one? Running Win7 64 bit

  • Which battery module serves which controller?

    I have an original XServe RAID with only the drives served by the lower controller populated. It has been in service since about 2003, if memory serves. I have a few questions: 1) How can I tell if the cache batteries are any good? The RAID admin sof