Migration between one VM to another VM

This is a problem that has come across my work environment.  We have a Hyper-V VM Server 2012 R2 as our terminal server, and it is crashing periodically
2-3 times a day.  The Host server is fine however, but the cause i learned through the dmp files was due to memory issues.  I did run a memory scan on the host server and the physical ram is perfectly fine.  This makes me believe there is an
issue with virtual machines ram, So what I want to do is set up another hyper-v VM Server 2012 r2 and migrate all of the current data and programs from the original VM to this newly created VM.  Does anyone know how i might be able to go around doing
that in a smooth fashion to not impact people that are working on the server?

Hi nezzshow,
>>So what I want to do is set up another hyper-v VM Server 2012 r2 and migrate all of the current data and programs from the original VM to this newly created VM.  Does anyone know how i might be able to go around doing that in a smooth fashion
to not impact people that are working on the server?
There is no such a feature in hyper-v  to migrate the data and program from one vm to another one .
First , please use fixed memory for that VM  .
Then check where or not there is compatibility issue of the application running in that VM ,you may try to troubleshoot it via a clean boot :
http://support.microsoft.com/kb/331796
Also please keep the host and VM up-to-date.
Best Regards,
Elton Ji
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Setups migration from one instance to another

    Can any one please tell me how to migrate AME (Oracle Approval Management) setups and GL Setups?
    We are using AME.B.(11.5.10.2). There will be quite a few of these setups required, and migrating by hand in all the eBS instances will be difficult.
    Is there any other way (API/other tools) to achieve this? Can we use FNDLOAD?
    Thanks in advance,
    Regards,
    Velusamy Raja

    Hi Anugrah,
    Unfortunately there isn't a facility to allow a customer iStore site to migrate from one environment to another (e.g. Test to Productions) easily. Currently the staging and migration of iStore environments are done manually, and some installations have utilized their own change control systems and adopted their own naming conventions for JSP customization and iStore content to make the environment promotion process more managable.
    With that said, there are concurrent programs that allow customers to perform site administration around migrating template mappings between instances (import and export). You can refer to the iStore Implementation & Admin. Guide under the iStore Template Mapping Import / Export Concurrent Programs.
    Regards,
    Bob

  • How can I migrate from one user to another within the same computer?

    My main user account in my desktop is becoming buggy after to many migrations from different computers and long time usage. I would like to migrate from one user to another user within the same computer to see if this improves my current problems.
    How can I do it in a reasonably safe and quick way?
    Thank you very much, cheers, Rui
    iMAC, OS 10.6.8... and yes, I love Snow Leopard light and handy... and all my programs work on it...

    Move small groups of files to the /Users/Shared/ folder or another location and see if the problems disappear. Moving everything to a new user account will in all probability transfer the problems.
    (119885)

  • Link Between One PDF to another PDF

    Hi,
    Could you please explain on how can we link between one PDF to another PDF.
    I have 2 PDF files which are Online Interactive Adobe forms.
    Regards,
    Maruti

    Hi Maruthi,
    we can.....
    see the below links......
    http://www.sap.info/public/INT/int/index/Category-28943c61b1e60d84b-int/-1/articleContainer-18393415bdc39551ae
    https://www.sdn.sap.com/irj/sdn/adobe
    thanks
    swamy

  • Migrating from one imac to another, it is down to 1 minute remaining but not moving beyond

    migrating from one imac to another, it is down to 1 minute remaining but not moving beyond after 20 minutes

    Ok. Thanks.  We're all anxiously waiting for the good news....

  • Select a number of fields between one field and another

    Hello,
    Is there any way to make a SELECT to show a number of fields between one field and another,
    without writting all the fields one by one ?
    For example, I have one table with these fields:
    TABLE EMPLOYEE:
    ID_EMPLOYEE NAME PHONE CAR AGE MARRIED
    and I just want to make a SELECT who shows only fields from NAME to AGE, but i don't want to
    write in the SELECT all the fields one by one.
    Is this possible?
    Thank you very much.
    Sorry for my english it's not very good.

    Swam wrote:
    Hello,
    Is there any way to make a SELECT to show a number of fields between one field and another,
    without writting all the fields one by one ?
    For example, I have one table with these fields:
    TABLE EMPLOYEE:
    ID_EMPLOYEE NAME PHONE CAR AGE MARRIED
    and I just want to make a SELECT who shows only fields from NAME to AGE, but i don't want to
    write in the SELECT all the fields one by one.
    Is this possible?
    Thank you very much.
    Sorry for my english it's not very good.If you use the DBMS_SQL package to execute your query you can reference the columns by position rather than name.
    One examples of using DBMS_SQL package:
    SQL> ed
    Wrote file afiedt.buf
      1  DECLARE
      2    cur       PLS_INTEGER := DBMS_SQL.OPEN_CURSOR;
      3    cols      DBMS_SQL.DESC_TAB;
      4    ncols     PLS_INTEGER;
      5    v_min_col NUMBER := 2;
      6    v_max_col NUMBER := 4;
      7    v_val     VARCHAR2(4000);
      8    v_bindval VARCHAR2(4000);
      9    v_ret     NUMBER;
    10    d         NUMBER;
    11  BEGIN
    12    -- Parse the query.
    13    DBMS_SQL.PARSE(cur, 'SELECT * FROM emp', DBMS_SQL.NATIVE);
    14    -- Retrieve column information
    15    DBMS_SQL.DESCRIBE_COLUMNS (cur, ncols, cols);
    16    -- Display each of the column names and bind variables too
    17    FOR colind IN v_min_col..v_max_col
    18    LOOP
    19      DBMS_OUTPUT.PUT_LINE ('Column:'||colind||' : '||cols(colind).col_name);
    20      DBMS_SQL.DEFINE_COLUMN(cur,colind,v_bindval,4000);
    21    END LOOP;
    22    -- Display data for those columns
    23    d := DBMS_SQL.EXECUTE(cur);
    24    LOOP
    25      v_ret := DBMS_SQL.FETCH_ROWS(cur);
    26      v_val := NULL;
    27      EXIT WHEN v_ret = 0;
    28      FOR colind in v_min_col..v_max_col
    29      LOOP
    30        DBMS_SQL.COLUMN_VALUE(cur,colind,v_bindval);
    31        v_val := LTRIM(v_val||','||v_bindval,',');
    32      END LOOP;
    33      DBMS_OUTPUT.PUT_LINE(v_val);
    34    END LOOP;
    35    DBMS_SQL.CLOSE_CURSOR (cur);
    36* END;
    SQL> /
    Column:2 : ENAME
    Column:3 : JOB
    Column:4 : MGR
    SMITH,CLERK,7902
    ALLEN,SALESMAN,7698
    WARD,SALESMAN,7698
    JONES,MANAGER,7839
    MARTIN,SALESMAN,7698
    BLAKE,MANAGER,7839
    CLARK,MANAGER,7839
    SCOTT,ANALYST,7566
    KING,PRESIDENT,
    TURNER,SALESMAN,7698
    ADAMS,CLERK,7788
    JAMES,CLERK,7698
    FORD,ANALYST,7566
    MILLER,CLERK,7782
    PL/SQL procedure successfully completed.
    SQL>Of course, if you were going to do this properly you would bind the correct datatypes of variables based on the types of the columns (the type information is also available through the describe information)

  • Hardware Migration from one server to another server

    Hi All,
    We require more information pertaining to hardware migration from one server to another server without changing OS & DB.
    We are preparing installation guideline document for the same.
    Has anybody came across similar scenario?.
    Any pointers on this will be highly appreciated.
    Regards
    Tushar Vhora

    usually you don't have to care too much about the tools used (r3ldctl = R3load control | r3szchk = R3 size checker | r3load = R3 Load), because you normally use r3setup/sapinst to fulfill the copy/migration. r3setup/sapinst will call the appropriate tools with the needed options...
    -> which release are we talking about?
    -> which os and which database do you use?
    -> how big is your source database?
    -> do you have any time issues while making the copy?
    GreetZ, AH

  • How to integration between one model to another model

    hi friends
    can any one explain me
    how to integration between one model to another model 
    ex:- i have sales model 1 and  i have anther model finance model how to changes  in figures in sales model as well same change are happen in finance model how it possibly please explain me friends   
    and how many ways i can do this ?
    Thank you
    suresh m

    Hi Suresh,
    If you do changes in Finance and want to send data in Sales , you can use LOOKUP /DESTIANTION_APP -script logic or ABAP logic.
    To have seamless flow, you need to take care of security.
    Explain your requirement in  more detail .
    May be helpful .
    Shrikant

  • How do i migrate from one computer to another ?

    how do i migrate from one computer to another ?

    Hi, what are the 2 OS versions involved?
    It's generally best to do it on 1st boot of the new one, but we need more info about OSes & exact model Macs.

  • I just migrated from one Mac to another and I got a msg to contact Adobe tech support and report error code 150:30. What do I do?

    I just migrated from one Mac to another and I got a msg to contact Adobe tech support and report error code 150:30. What do I do?@

    Reinstall the software properly. Migration is useless due to the specifics of the activation system.
    Mylenium

  • AD Migration from one domain to another domain between different Forest.

    Dear Team,
    We have a domain named "test.gov.in" .Now we want migrate all the users,computers,groups,GP ....etc in to our new domain "abc.net".Operating system of the source DC and destination Dc is same (Windows 2003 32 bit)..
    Pls provide me the steps to migrate one  domain to another domain between different forest
    Thanks
    Anurag

    Would agree with Christoffer and migrate using ADFS but before you can do this you will need to set up a trust between the two domains.  Once this has been accomplished then you can run ADMT.
    http://technet.microsoft.com/en-us/library/cc740018(v=WS.10).aspx
    Downloading ADMT is a free tool from Microsoft
    http://www.microsoft.com/en-us/download/details.aspx?id=8377
    ADMT Guide
    http://www.microsoft.com/en-us/download/details.aspx?id=19188
    Paul Bergson
    MVP - Directory Services
    MCITP: Enterprise Administrator
    MCTS, MCT, MCSE, MCSA, Security, BS CSci
    2012, 2008, Vista, 2003, 2000 (Early Achiever), NT4
    Twitter @pbbergs http://blogs.dirteam.com/blogs/paulbergson
    Please no e-mails, any questions should be posted in the NewsGroup.
    This posting is provided AS IS with no warranties, and confers no rights.
    I think you mean ADMT and not ADFS :)
    Enfo Zipper
    Christoffer Andersson – Principal Advisor
    http://blogs.chrisse.se - Directory Services Blog

  • HT4889 Can I choose what to migrate from one mac to another mac?

    Can I choose what to migrate from one mac (Powrebook G4) to another mac (New iMac)?  I do not want everything to be migrated, as some programs are not compatible with Mountain Lion or an intelIntel mac!
    As it is a brand New iMac I would also like to keep it clean of unnecessary files that have become  imbedded in the Powerbook over its time.Therfore it would be nice if I can pick and choose what is to be transferd. If you can give me a heads up on if and how it would be appreciated!!!
    Thanks
    PicMac

    Thanks for your input!… I have now come across an Article from Apple 
    Migration Assistant tips and tricks
    http://support.apple.com/kb/HT3231?viewlocale=en_US
    Controlling what is migrated
    With Migration Assistant you control the data that is migrated from another Macintosh computer. By clicking the triangle next to a user's name, you can select which User Accounts to migrate and choose which folders to migrate. You can also choose whether to migrate Applications, Network and Computer settings, or Volumes. Migrating only what you need can reduce the time it takes to complete your migration.

  • Oracle db Migration from one server to another

    Can any body guide me why companies migrate Oracle db from one server to another , & what is the process for doing that?

    In that case, something has changed, right? The need to have a standby server has become important.
    Next steps:
    - define the real business requirements (why do we think we want to spend money on a spare server? why should the money go to a hardware company, instead of an increase in my salary? what benefit are they looking for?)
    - see whether any known ideas or alternatives fit the requirements, see whether the backup should be a standby server, a hot failover server, or some other backup mode;
    - go to the Oracle Technet site, look under the Product Centers: Database area to see whether there are any related topics (such as 'availability', as one of the logical reasons for a backup is to make the application more avaliable); check in that area for any white papers; read the white papers to formulate an idea, write down interesting keywords;
    - look in the Oracle docuentation, list of books, to see whether there are any books specifically dealing with that topic (such as Oracle Data Guard);
    - use Google to search for the combination of 'Oracle backup' and the interesting keyword and study several of the sites;
    - form a basic plan;
    - go to expert and trusted sources (these forums, OraFaq.com), post a plan and ask for feedback.
    There are literally dozens of alternatives. Research and find the one(s) that are right for your situation. That includes the technical as well as the financial reasons.
    More than anything, that means you need to learn to ask the right question. And that often means asking the same question several different ways, and attempting to answer each variation yourself to see how the answer solves your specific needs.

  • Calendar server Migration from one server to another

    Dear folks,
    We are planing to move our calendar server from one server to another, Platform is same, OS is same, Calendar server on both systems are having similar version, Only pointing to new directory server but same schema level and populated with same users,
    What would be the best approach to accomplish this:
    1) Just take backup of Database & Restore it on the new server
    2) Run Migration utility .....
    ll appreciate for any help......
    Thanks

    Sp00ky_Geek wrote:
    We are planing to move our calendar server from one server to another, Platform is same, OS is same, Calendar server on both systems are having similar versionHow 'similar'? (showrev -p | grep ics)
    Only pointing to new directory server but same schema level and populated with same users,
    What would be the best approach to accomplish this:
    1) Just take backup of Database & Restore it on the new server
    2) Run Migration utility .....Which migration utility?
    If they are the same platform/version you should be able to copy the database across as-is. The users directory entries (icsdwphost) will need to be updated to reflect the new hostname for the calendar server.
    As with any move/migration, test and retest.
    Regards,
    Shane.

  • Text Migration from One system to another

    I need to migrate texts from one system to another system. More of a data migration where in all text ex sales order Purchase order etc need to be migrated. If someone has worked on such requirement and can share the steps involved where in we can make a generic program for Upload and Download of the same.

    if they are standard texts then you can check this program
    RSTXSCRP
    here you can upload and download the standard text.
    Check it once.

Maybe you are looking for

  • I am unable to open Firefox whenever I want to go online

    This morning I tried to open Mozilla Firefox to go online like I always do, but it didn't open. I tried several more times and even tried restarting my computer, but it never worked. I even tried deleting it and re-installing/downloading it, but then

  • Windows 8.1 64 bit and USB 3.0 connection Error

    What a Nightmare to me after I have purchased my Probook 470 G2 with window 8.1 64bit and USB 3.0.  after my setup for my new laptop, there are 2 issues i am facing now: 1. my USB 3.0 external drive can work properly with my old window 7 laptop with

  • How to reformat my hp mini 5101

    Hi, I would llike to ask how to reformat my hp mini 5101.  I no longer open windows. Since i try to download windows 8. I' d try to press the F10 button but still not responding.  What can i do? Please help me  to solved my problem. Thanks, dyesewhit

  • Use of raise in exception handling block

    what is the use of raise in exception handling block for eg. declare a number; b emp.empno%type; begin begin SELECT empno INTO a FROM emp where 1=2; exception when others then dbms_output.put_line('inner'); raise; end; exception when no_data_found th

  • Internal Muxing Error

    Hey guys, came across something very interesting today. for the first time i received this error when building my project. initially i thought it was a bad VTS, since i was just re-using the same one as a template. i deleted it, created a new VTS and