Move MaxDB database to new server

Hello,
I would like to move a MaxDB (Content Server) database from a Windows 2003 x86 server to a Windows 2003 x64 server. I will be moving from 7.5 to 7.6 at the same time. Reading around the subject, this is what I have done so far:
Target Server:
Used SAPINST to install the MaxDB 7.6 / Content Server 6.40 on the new x64 target server.
SAPINST created a empty database on the target server and I added the appropriate number of volumes.
After playing around I used db_active to initialize the target database.
Put the target database in admin mode.
Source Server:
Used  backup_start CompleteData RECOVERY DATA to create a backup of the database.
Target Server:
Created a backup medium called Restore and pointed this at the copied backup file.
In db_admin mode executed a recover_start "Restore" DATA
db_online
Re-created the system tables (via wizard or dbmcli)
Questions:
Do I need to apply any log backups here (assuming no activity on source)?
If there were activity on the source and I applied the logs to the target, how do I apply the data that is in the transaction logs but not currently written to the log backup?
There is no backup history on the target server, how does it know how far to go and that the log recovery is complete?
Can the backup history be copied from souce to target?
Thanks,
Philip.

Hello Philip,
SAP Note 1089402 - "Shortening backup history for MaxDB/liveCache instances" is useful in this case:
The backup history of a database instance that is based on MaxDB is stored in the files dbm.knl and dbm.mdf in the run directory (usually, /sapdb/data/wrk/<DBSID>)
You can copy these two files in the new server in order to apply the log backup to the restored database BUT... this is not supported by SAP, because as far as I know there is no SAP Notes where you are asked to do so.
So, the supported procedure is to restore the DB but you shouldn't apply any backup log
Regards,
Valerio

Similar Messages

  • MOVE REPLICATION DATABASE TO NEW SERVER

    WE HAVE A PRODUCTION DATABASE THAT WORK'S AS REPLICATION FROM 9 DATABASES, WE ARE GOING TO MOVE DATABASE TO NEW SERVER.
    AS DATABASE IS PRODUCTION, WE CAN NOT STOP SERVICES. WE THINK TO CREATE A NEW DATABASE ON NEW SERVER, IMPORT DATA FROM PROD. DATABASE. SIZE APROX 100GB.
    QUESTION:
    I NEED TO KNOW HOW I CAN STOP SERVICES SHORT TIME. TO CHANGE TO SNEW SERVER.
    THANKS FOR YOUR SUGGESTIONS

    Здравствуте Ivan.
    Before i would do anything like this i would make sure that i have a good valid backup (just in case!).
    I would check all the applications that are currently conencting to your ORacle and make sure they are all conneting 'by name' not the IP. Or and then i would check DNS server (make sure nslookup is working) to makesure that everything resolves correctly after the moving DB to another machine.
    Then check that the oracle_home etc are in the same directory and check that all paths etc in the configurations are the same.
    Hope this helps
    Kind Regards

  • Move Owb database to new server

    Hi,
    We are going to move our Owb (9.2.0.2.8) database to a new server. The nodename isn't going to change only the ip-address will change. The OS will be the same.
    The steps will be:
    1) install Owb on new server
    2) copy database to new server
    Is there some other step we'll need to take?
    regards,
    Ivan

    Здравствуте Ivan.
    Before i would do anything like this i would make sure that i have a good valid backup (just in case!).
    I would check all the applications that are currently conencting to your ORacle and make sure they are all conneting 'by name' not the IP. Or and then i would check DNS server (make sure nslookup is working) to makesure that everything resolves correctly after the moving DB to another machine.
    Then check that the oracle_home etc are in the same directory and check that all paths etc in the configurations are the same.
    Hope this helps
    Kind Regards

  • Move mailbox database to new server (new domain)

    Hey,
    I want to move a mailbox database from a broken server to a new server in a new domain.
    We are already using the new server and I am wondering if I can merge the databases or make the old mail available in any way. Currently everybody has done a pst export before adding the new mailbox.
    Thanks,
    Jason

    Hi Jason,
    Exchange Server 2013 introduces the concept of batch moves and migration endpoints. Migration endpoints are management objects that describe the remote server and the connections that can be associated with one or more batches. And, the new batch move architecture
    improves on MRS moves with enhanced management capability. You can select the appropriate method to move your mailboxes.
    Here is an article for your reference:
    Mailbox moves in Exchange 2013
    https://technet.microsoft.com/en-us/library/jj150543(v=exchg.150).aspx
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Move large database to other server using RMAN in less downtime

    Hi,
    We have large database around 20TB. We want to migrate (move) the database from one server to other server. We do not want to use standby option.
    1)     How can we move database using RMAN in less downtime
    2)     Other than RMAN is there any option is available to move the database to new server
    For option 1 (restore using RMAN),
    Whether below options are valid?
    If this option is valid, how to implement this?
    1)     How can we move database using RMAN in less downtime
    a)     Take the full backup from source (source db is up)
    b)     Restore the full backup in target (source db is up)
    c)     Take the incremental backup from source (source db is up)
    d)     Restore incremental backup in target (source db is up)
    e)     Do steps c and d, before taking downtime (source db is up)
    f)     Shutdown and mount the source db, and take the incremental backup (source db is down)
    g)     Restore last incremental backup and start the target database (target is up and application is accessing this new db
    database version: 10.2.0.4
    OS: SUN solaris 10
    Edited by: Rajak on Jan 18, 2012 4:56 AM

    Simple:
    I do this all the time to relocate file system files... But the principle is the same. You can do this in iterations so you do not need to do it all at once:
    Starting 8AM move less-used files and more active files in the afternoon using the following backup method.
    SCRIPT-1
    RMAN> BACKUP AS COPY
    DATAFILE 4 ####"/some/orcl/datafile/usersdbf"
    FORMAT "+USERDATA";
    Do as many files as you think you can handle during your downtime window.
    During your downtime window: stop all applications so there is no contention in the database
    SCRIPT-2
    ALTER DATABASE DATAFILE 4 offline;
    SWITCH DATAFILE 4 TO COPY;
    RECOVER DATAFILE 4;
    ALTER DATABASE DATAFILE 4 online;
    I then execute the delete of the original file at somepoint later - after we make sure everything has recovered and successfully brought back online.
    SCRIPT-3
    DELETE DATAFILECOPY "/some/orcl/datafile/usersdbf"
    For datafiles/tablespaces that are really busy, I typically copy them later in the afternoon as there are fewer archivelogs that it has to go through in order to make them consistent. The ones in the morning have more to go through, but less likelihood of there being anything to do.
    Using this method, we have moved upwards 600G at a time and the actual downtime to do the switchover is < 2hrs. YMMV. As I said, this can be done is stages to minimize overall downtime.
    If you need some documentation support see:
    http://docs.oracle.com/cd/E11882_01/server.112/e18951/asm_rman.htm#CHDBDJJG
    And before you do ANYTHING... TEST TEST TEST TEST TEST. Create a dummy tablespace on QFS and use this procedure to move it to ASM to ensure you understand how it works.
    Good luck! (hint: scripts to generate these scripts can be your friend.)

  • Migrate Mirror Database to New Server

    Hi,
    I need to migrate my SQL server Mirror Database to
    a new server. my current setup is as below
    1. server A principal (192.168.1.100)
    2. server B Mirror     (192.168.1.200)
    now i have a new server (Server C) to replace server B as below
    1. server A principal (192.168.1.100)
    2. server C Mirror     (192.168.1.300)
    my question is how to migrate mirror db to new server without any affect or downtime on principal server, please share idea/experience for above.
    note: SQL SERVER 2008R2 EE(64BIT), Win2008R2 EE 64bit.
    Regard
    Faisal Wahid

    Thanks for your quick response.
    Is it possible something like in oracle (pardon as i am oracle DBA not sql server guy), 
    (Oracle Steps to migrate standby(mirror) db to new server)
    1. Pause replication on primary(principal) 
    2. Move standby(mirror) database files to new server(using copy/rman/etc).
    3. Update connection information (TNS in oracle) on primary(principal) to point new server.
    4. Start replication on primary(principal).
    the above steps will simply migrate the standby(mirror) database to new server,
    can we do something like above in sql server?

  • Recovering andrestoring of database in new server after current server fail

    Hi,
    If we have a disaster ,where the Database server has gone and we can not use it again.
    1) We do not have dataguard.
    2) We have rman backup file of 2 days before (Full database backup). Rman backup with nocatalogue
    3) Flashback log files of 2 days back
    3) Archive log till yesterday
    4) Export file of morning.
    Can we be able to restore and recover our database in new server
    if yes then how.
    Because RMAN Backup has its DBID and the new Oracle software which i install on new server will be installed with new ID.
    Please help me understanding this thing (About target database)
    Regards

    First of all, you should install the software on the server only, you should NOT create a database.
    As you can restore a database to a new host (and this is documented), you won't have any problems. That is, if you don't create a database during installation, and read up on recovery.
    I wonder: why do all those anonymous users always can't be bothered to read the documentation, and ask others to paraphrase it for free?
    Sybrand Bakker
    Senior Oracle DBA

  • Move Publisher backup to new server( Cold Standby Server) ?

    We have CUCM cluster consist of 1 publisher, 4 subscriber and have installed a new node like another cluster's publisher(with diferent ip address from existing publisher) . When existing publisher goes down we will move publisher backup to new server and change publisher ip address to new server on existing subscribers.
    is it posible ?
    Our aim is using new server for publisher down issue.(like cold standby server but diferent ip address from existing publisher)
    Or is there any better way to install publisher backup on on branch? When publisher goes down we will use the new server like publisher.

    Hi
    Re: NTP... you can have multiple NTP servers assigned, and only the primary NTP server is used for license MAC generation. As such, I would:
    1) set the primary NTP server to be the real NTP address you want to use. This will not be accessible when you build the server with the old servers' IP.
    2) set the secondary NTP server to an accessible NTP server. I do this by setting up NTP on the server you serve the SFTP backup file from. I use Meinberg NTP if this is a Windows box, it's free.
    That way you can build the server (primary NTP not accessible, but secondary is so it's fine). Then after the restore, change IP address and it will start using the primary NTP server.
    I presume deployment type refers to product and role .e.g. a CUCM Publisher, not a CUC server or CUCMBE publisher.
    Aaron HarrisonPrincipal Engineer at Logicalis UK
    Please rate helpful posts...

  • Move apps tier to new server

    Hi all,
    here we have 2 node setup
    node 1 : apps + db (cm + db)
    node 2 : apps (web + forms)
    requirement is we want to move node 2 to new server bcoz os team wants to do some maintainance on node 2.
    is this possible to move only node 2 (web + forms) to new server through rapid clone n sync with existing cm and db node or we have to move entire setup to new servers
    links n MOS doc ids highly appreciated
    versions:
    apps : 11.5.9
    db: 9.2.0.8
    os : RHEL 4
    Thanks,
    Haafiz

    Yes it is possible and all you need to do is the following (you don't need to move node1):
    - Install OS on the new server + OS pre-req software and packages
    - Run preclone on node 2
    - Shutdown the application on node 2 and copy the files to the new node
    - Run postclone on the new node
    - Clean FND_NODES and run AutoConfig
    Oracle Applications Installation Update Notes, Release 11i (11.5.10.2) (Doc ID 316806.1)
    Cloning Oracle Applications Release 11i with Rapid Clone (Doc ID 230672.1)
    How to get a clean Autoconfig Environment ? (Doc ID 391406.1)
    Thanks,
    Hussein

  • Move database to new server from ASM to FS

    Hey, I have to move my database from ASM to filesystem storge (10.2.0.3 on sles 10 sp1)
    The new server is also sles 10 sp1.
    Can I just do an full export on the source site, and an import on the target site ? Will that work ?
    Any other steps to perform ?
    Chris

    Hi,
    1. Export db wlth FULL=Y . and then we have to create new database at target location and then import operation have to done.
    2.we can take rman backup, restore rman backup in target location. This method will reduce the complexity
    take backup through Rman.
    Target location:-
    1. export ORACLE_SID=xxx
    2. rman target /
    3. startup nomount
    4.RMAN> RESTORE CONTROLFILE FROM 'backup piece';
    5.RMAN> alter database mount;
    6.
    set newname for datafile '+DG/datafile.dbf' to 'FS/location';(do for all datafiles)
    restore database;
    switch datafile all;}
    7. alter database rename file '+DG/datafile.dbf' to 'FS/location';(do for all datafiles)
    8.alter database open;
    follow these steps from ASM TO FS.
    Edited by: startup on May 23, 2013 7:41 PM

  • Break cluster and move databases to new server

    Hello everyone.  I have a question that may be basic but I am by no means a SQL person.  Right now we have a SQL 2005 cluster running on VM ESXi with a celerra backend storage.  Some drives are mapped Raw.  We recently put in a new
    VNX and we are not able to migrate the SQL server over due to how the drives are mapped.  I am thinking that I want to build a new SQL server and move the databases.  The new build will not be a cluster since we have point in time recovery manager
    from EMC.  Now my thinking is, can I break the cluster, move the 2nd node to the new ESXi and storage and present new storage or would it be best to just build a new server?  Is it easy enough to change an instance name after SQL is running? 
    Several applications refer to the SQL Cluster and they are critical so I need something with least amount of downtime.  Would doing backup of all of SQL and then a restore to the new system be best?  Any thoughts or direction?  Thanks
    Joe M

    The most straightforward and reliable method is to build a new server, migrate the databases using backup/restore, test the new server, and cut-over by shutting down the old servers and either reconfiguring the client applications or renaming the new server
    to have the same network name as the old server's SQL Cluster Client Access point. 
    You can also use DNS redirection instead of renaming the new server, although using a DNS hostname alias for your server requires some additional security configuration.  EG
    http://blogs.msdn.com/b/dbrowne/archive/2012/05/21/how-to-add-a-hostname-alias-for-a-sql-server-instance.aspx
    David
    David
    David http://blogs.msdn.com/b/dbrowne/

  • How to move or copy a database to new server

    Greetings All,
    Oracle Enterprise 11g r2, on a Windows2008 platform.
    I would appreciate some advice regarding moving/copying a database to a new server. Some of the information below may not be pertinent to my goal. Please be patient as I am a newbie.
    I have installed oracle and created a database (prod03) on the new/target server. I created the same tablespaces (and datafiles/names) as are on the existing/source server (prod01), except that on the new/target server (prod03) there is 1 more data file for the USERS tablespace than there is on the existing/source server (prod01).
    My initial thought was to perform a expdp full=y.
    The database contains 220 schemas, when I performed an expdp full=y estimate only it indicated 220Gb. I think this would take much more time to export and then import than what I hope to be able to do below.
    I would like to be able copy the datafiles from the source server prod01 server over to the target server prod03, some names/locations will change.
    One scenario I found (http://www.dba-oracle.com/oracle_tips_db_copy.htm) was to backup the control file to trace on the old/source server (prod01). Copy everything to the new/target server. Tweak the file that creates the new control file.
    Step 4 of the above mentioned link says to change
    CREATE CONTROLFILE REUSE DATABASE "PROD01" NORESETLOGS to
    CREATE CONTROLFILE SET DATABASE "PROD03" RESETLOGS
    Notice the change from REUSE to SET. I am not sure if this is right for my situation.
    Could I issue a backup control file to trace on the target server (prod03), add the reference to the additional datafile. Copy over all of the datafiles for all of the tablespaces (users,system/sysaux/undotbs1,temp),
    Delete the existing control file, and generate the new control file.
    Then perhaps issue a startup resetlogs or startup recover?
    Thanks for your time,
    Bob
    Edited by: Snyds on May 17, 2012 12:26 PM

    So unless someone provides me with an rman script I can't use rman.google is your friend
    Simply telling someone to get the experience dose not help. So your post is useless to me.I suppose you do not have experience with "old-school" manual cloning as well.
    Import of entire 200GB DB with datapump or imp will also require some experience otherwise it will be a long-long exercise.
    So, basically, any advise may be useless to you, because of your "the fact is I don't have the experience. Nor do I have the time to obtain the experience."

  • Use unused server as share point server after move databases to new server

    HI,
    we have a single server share point farm (ServerApp01) for Intranet and it connects to a SQL SERVER 2008 R2 database server (Server02),
    and now  we moved all sharepoint databases and content dbs to new sql server in different server (ServerSQLNew).
    using sqlalias we point to new SQLSERVER 2012 Instance in this new server.
    - now the old sql server (Server02), is not in the sharepoint  farm 
    - now can i add this server in intranet farm and  use this old server (Server02) as wfe server ?
    here my doubt is  when i open cliconfg.exe i saw that sharepoint server pointing to this old server name (Server02),
    after i will join this server to existing farm is any issues?
    adil

    hi
    i already turned off sql server instance in old sql server in my case in Server02.
    In share
    point Server (ServerApp01) i opened cliconfg.exe and add sqlaliases to point to new sql server.
    If i rename  server02 server or rebuild
    the server with a clean OS install  still  Sharepoint Farm works right?
    below is the scenario of sqlalias in sharepointserver (serverapp01)
    adil

  • Move a database from one server to another

    Hello All,
    I am using Oracle 11g R2 on Oracle Enterprise Linux 32 bit.
    I have 2 servers , LinuxActive and LinuxPassive. I am trying to dismount the file system of the datafiles and control files ... from one server and mount it on the other.
    I previously opened a thread here concerning this subject and reached a result that it can be done, now i have questions about the details.
    I have installed Oracle software on both servers where ORACLE_BASE is /u01/app/oracle and ORACLE_HOME is /u01/app/oracle/product/11.2.0/db_1 on both servers.
    I created an orcl database on LinuxActive where all its datafiles, control files, redo logs, flash_recovery_area is on a disk group mounted under /oradata.
    I want to dismount /oradata from LinuxActive and mount it to LinuxPassive and start up the orcl database from LinuxPassive instead of LinuxActive.
    I may need to revert back /oradata to LinuxActive.
    What steps should I do? should I migrate my spfile also to /oradata?
    Should I create an orcl database on LinuxPassive?
    Do I start up my database like i do when i build an Oracle dataguard database ? from a pfile of the old database?
    Regards,
    Edited by: NB on Feb 27, 2012 5:25 PM

    NB wrote:
    Hello All,
    I am using Oracle 11g R2 on Oracle Enterprise Linux 32 bit.
    I have 2 servers , LinuxActive and LinuxPassive. I am trying to dismount the file system of the datafiles and control files ... from one server and mount it on the other.
    I previously opened a thread here concerning this subject and reached a result that it can be done, now i have questions about the details.
    I have installed Oracle software on both servers where ORACLE_BASE is /u01/app/oracle and ORACLE_HOME is /u01/app/oracle/product/11.2.0/db_1 on both servers.
    I created an orcl database on LinuxActive where all its datafiles, control files, redo logs, flash_recovery_area is on a disk group mounted under /oradata.
    I want to dismount /oradata from LinuxActive and mount it to LinuxPassive and start up the orcl database from LinuxPassive instead of LinuxActive.
    What steps should I do? should I migrate my spfile also to /oradata?
    Do I start up my database like i do when i build an Oracle dataguard database ? from a pfile of the old database?
    Regards,Thanks for your detailed information.
    RMAN duplicate will be simpler.
    As you are in 11g, you can perform duplicate from active database.
    Create PFILE in new location,
    Change "CONTROL_FILES" parameter to new mounpoint.
    Perform RMAN duplicate
    In both the cases you have to take care of parameters, DB_FILE_NAME_CONVERT & LOG_FILE_NAME_CONVERT.
    Refer some links
    How to Move/Restore DB to New Host and File System using RMAN [ID 1338193.1]
    http://docs.oracle.com/cd/B28359_01/backup.111/b28270/rcmdupdb.htm#CHDJJBCF

  • Moving SCCM 2012 R2 SQL 2014 Database to New Server

    Greetings,
    I have a SCCM 2012 R2 server with SQL 2014 installed which has been upgraded from SQL 2008 R2.  My goal is to separate the SCCM and SQL servers.  I am aware that SCCM only supports SQL 2014 if it has been upgraded on new installs, but after installing
    SQL 2014 on a new server and importing the database I get an error from the Configuration Manager Setup stating that I must upgrade the SQL server before I can modify the SQL Server configuration.  
    Does this mean I need to install SQL 2008 or 2012 on the new DB server and from there upgrade to SQL 2014?

    Thank you for your reply.  We have been having several issues with our current server, and have had performance issues with SQL and SCCM installed on the same server mainly during OSD deployments to several machines at the same time.  These servers
    wouldn't necessarily need to be separated since we can allocate more resources, but the overall goal is to move our primary site server to a new server running Server 2012 R2 (current server is 2008 R2).
    I have tried the site recovery option in the installer where you run the SCCM backup and restore maintenance task and I have renamed the new server to the name of the old server.  If I understand correctly, this is the correct method of switching out
    a site server machine?  I experience the same error as my original post when trying this, but I will try the hotfix Torsten provided as this seems to be the issue I'm having.
    Thank you.

Maybe you are looking for

  • Can't top up my account on skype

    Hello, so I am trying to top up my account on Skype but it keeps on throwing me off saying cannot purchase. I have tried to go and do it through the website As well. Anyone know what to do???

  • HT200126 "TV Shows" icon missing from Apple TV Main Menu

    It appears that the Apple TV software update 5.3 has removed the "TV Shows" icon from the main menu.  Now, I no longer have AppleTV access to the TV shows I have purchased and I am unable to search/purchase other TV shows.  Has anyone similar finding

  • Adobe AIR and HTML5

    Hi, I am trying to run a HTML5 web application inside Adobe AIR, However it is unable to load the page. Other websites open fine. Does Adobe AIR support HTML 5? If yes, how do I get a HTML5 page to display in the frame? Thanks.

  • IPhoto Images Showing Up in iLife Media Browser, Desktop/ScreenSaver, Etc.

    Like others, I'm having the problem where my iPhoto library/images are not showing up in the iLife Media Browser in other iLife and iWork applications. They are also not showing up in the Desktop & Screen Saver system preferences. I've read a lot of

  • Looking for windows 7 drivers for an HP Pavilion 15-p151nr

    Hi all: Got a customer who wants to downgrade to Win 7/64 on a HP Pavilion 15-p151nr.  Found Network, audio  and video drivers.  Still need chipset (HP 227E motherboard?) , USB, SM Bus, and card reader drivers.  HP supports only 8 and 8.1 on this mod