Restore non-clustered to clustered

Looking for suggestions on the best way to proceed:
I have an RMAN image backup of a Windows/10g/32bit/non-ASM database which I would like to restore as a Windows/10g/64bit/ASM/Clustered instance. I only have the image available because the server it was on was rebuilt as 64bit and is currently set up as a 1 node cluster. We plan to add another node in the near future.
My current thinking is that I would have to restore the instance as non-clustered/file system, and then convert it to ASM/Clustered but I'm not quite sure if that is the best way or even how to do it at this point.
Any help or suggestions would be greatly appreciated.

Hi Srinivas,
IF this is a Windows x64 platform that we are talking about here, I just want to add the note that "Running 32-bit applications on a 64-bit operating system is generally referred to as "Compatibility-Mode" by many AMD64/EM64T hardware vendors. Irrespective of this terminology, 32-bit Oracle Database server is *not* certified on Windows x64. For the 32-bit Oracle database client, check the certification matrix for more details." - taken from http://www.oracle.com/technology/support/metalink/index.html > for RAC on Windows.
To me, this might have an impact on your statement: "64 bit OS Windows can serve 32 database. No problem there." - maybe not technically and for the purpose of the migration you might want to tolerate that.
Thanks.

Similar Messages

  • TS1702 i have a ipod touch 2g and after a restore none of my apps will restore because it says that i need a newer version of the ipod software to run them they all work fine till i did the restore . is there any way to get them back ?

    i have a ipod touch 2g and after a restore none of my apps will restore because it says that i need a newer version of the ipod software to run them they all work fine till i did the restore . is there any way to get them back ?

    Your only way is if you have the version that was compatible on your computer such as in the recycle bin/trash or in a computer file backup. In that case delete the current version that is in your iTunes App library and replace it with the older version. Then sync.
    Also see:
    Recover Older Versions of iPhone Apps After Updating — Apple News, Tips and Reviews

  • How to restore non iTunes data after an iCloud restore

    Hi all
    My iPod Touch 4th gen had screen issues so was replaced via the Genius Bar with a new device. Prior to this I had done a backup to iCloud and also sync'ed with iTunes.
    When I turned on the new device I selected to restore from iCloud backup and this seemed to work fine - I have all my apps, Camera roll photos and iTunes purchased music. However I dont have any of my non-iTunes music or photos. I was told I got these back simply by sync'ing the new device with iTunes.
    When I plug the new device (now restored from iCloud) into my computer (a windows PC), iTunes starts up and the iPod Touch appears in the device list..... but that is as far as it gets. There is no sync and when you click on the device in iTunes nothing happens - in the main window where you would have seen the iPod data stats .etc, all I see is the word "iPod" in the centre.
    Can anyone shed any light on this, is there something I need to do to get iTunes to properly recognise this newly restored device??
    Thanks
    lobsta

    You might what to say what data you have mixed and where.

  • How to Restore Non-Jailbroken 3G to 3.1.3

    Has anyone figured out how to restore a non-jailbroken iPhone 3G to 3.1.3?
    There are lots of links for people who had jailbroken their iphones earlier. But what about those of us who never jailbroke the iphone and just want to get back to 3.1.3?
    And don't, please, suggest doing either a hard reset, or a restore and backup of iOS 4. I have tried all those things and I still find that if I don't reboot my iPhone 3G 3 or 4 times a day it quickly bogs down to a point where it is almost unusable.
    Flailing away trying to make iOS 4 run better on a 3G phone is not the answer!
    thanks in advance...

    I was able to make this downgrade today following these instructions:
    http://www.ihackintosh.com/2010/06/downgrade-iphone-3g-3gs-ios-4-gm-to-os-3-1-3/
    I downloaded the 3.1.3 version from here
    http://www.techhail.com/iphone/direct-download-links-iphone-os-3-1-3-for-iphone- and-ipod-touch/3151
    follow the instructions carefully. Note that you will need to have recboot already installed at the end.
    It is great to have my iphone responsive again. it was terrible with os4

  • Db restore non archive mode lost redo log file..restore from controlfile tr

    i have a db 11g I had taken non archive backup but failed to take redo log files backup...
    so while i restored the db ... after formatting the machine ..the oracle instance wont start.
    I create a controlfile trace but when i run it i get errors.
    since i dont have the older log files.. how do i get around with this issue
    Thanks
    Following is the sample of control file trace ..Note i cannot create the redo log file
    since db wont be mounted at most it shall be in nonmount mode
    and below is my created controlfile ....
    CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 292
    LOGFILE
    GROUP 1
    'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_80L7C259_.LOG'
    SIZE 50M BLOCKSIZE 512,
    GROUP 2
    'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_80L7C375_.LOG'
    SIZE 50M BLOCKSIZE 512
    -- STANDBY LOGFILE
    DATAFILE
    'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSTEM.DBF',
    'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\UNDOTBS1.DBF',
    'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSAUX.DBF',
    'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\USERS.DBF'
    CHARACTER SET AL32UTF8
    I dont have these 2 files ..what do i do to get around this situation
    'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_80L7C259_.LOG'
    SIZE 50M BLOCKSIZE 512,
    GROUP 2
    'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_80L7C375_.LOG'
    SIZE 50M BLOCKSIZE 512
    -- STANDBY LOGFILE
    DATAFILE
    Edited by: zycoz100 on Feb 27, 2013 10:57 PM

    If you have a cold backup (database shutdown properly) without the redo logs, change this :
    CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS NOARCHIVELOGto
    CREATE CONTROLFILE REUSE DATABASE "XE" RESETLOGS NOARCHIVELOGYou have to change the NORESETLOGS to RESETLOGS for Oracle to recreate the online redo logs.
    Hemant K Chitale

  • Backup & Restore non-administrators Group Policy Settings

    Hi,
    I'm trying to setup a few reference images of Windows 7 which will be deployed to our client computers. The baseline Group Policies are configured through Local Group Policies set in the image. I've setup a Master GPO machine on which to build the policies
    and test them.
    The Local Group Policies have been set for Local Computer Configuration, Local User Configuration and for Local Non-Administrators Configuration. The thinking is that members of the local Administrators group on the computer are unrestricted and still have
    the ability to do most things. Users which log onto the computer abide by the more restrictive Non-Administrators Group Policy settings.
    Using the "LocalGPO.wsf" script I'm able to backup and restore Computer and User Configuration which affects all users of the machine but it does not backup the Non-Administrators Policies. Is this possible?
    After some digging around in the "GPOPack.wsf" files I've found that the Machine & All Users Policies are restored by the "LocalPol.exe" file. This utility has command line switches for '-m' machine and '-u' user. So I'm guessing
    that it's not possible to restore the Non-Administrators Policies?
    For what it was worth I've tried copying the "Registry.pol" file from "%windir%\System32\GroupPolicyUsers\S-1-5-32-545\User" folder on the GPO Master machine and placed the file in the same location on target computer. A test which had
    one value set worked on the reference computer but when the policies were copied form the GPO Master machine, the target computer ignored all the settings.
    Any ideas how to backup/restore Local Machine Non-Administrator Group Polices?
    Thanks!

    Not entirely sure of the specific policies you're dealing with, but you would typically use the Microsoft Security Compliance Manager to create GPO packs that you would then apply using the Apply Local GPO Package task sequence step in MDT.
    I'd encourage you to look over the Applying Group Policy Object Packs section of the
    Using the Microsoft Deployment Toolkit.docx file in the MDT 2013 documentation for more details.
    MDT 2013 documentation can be downloaded here: LINK

  • Apple Configurator Won't Restore Non-Apple Apps

    Using the newest Configurator from December, I was able to backup and restore an iOS7 iPad to a few others, but after that, none of the apps from the backups get copied over to the new iPads. They get some of the uninstallable Apple apps dispersed over a few of the home screens where they were on the back up, but none of the rest of the apps. I end up with iPads with 4-5 pages of apps but only one or two Apple apps per page.
    I've logged into the iTunes account in iTunes and authorized my computer (10.9).

    I ended up leaving them blank and putting all the apps into Meraki for downloading.

  • Restore non 10 OS backup to z-10

    Hello,
    I have lost my 9300 blackberry but luckliy I have a back up. I am following this KB (KB33322)http://btsc.webapps.blackberry.com/btsc/viewdocument.do?externalId=KB33322&sliceId=2&cmd=displayKC&d...
    but I don't see the ^ at the bottom of the link. In my link instance the tabs are on the side and not at the bottom and I don't see the ^ anywhere so any idea what is going on - please help.
    All I would like to do is restore from a back up to my new Z-10. Thank you for any assistance.

    Thanks. But my backup is stored on a mac. It was a backup for a 9300. Now I have a z10. How do I take a backup.

  • Force Reboot and Disk Boot to Restore Non Mounting iPods

    My 3rd Nano 3G worked great until I added Calendar and Contact Synching. After that the crashing came back, and I could not get it to mount even though the disk mode was displayed on the screen.
    After much head scratching, I looked up on the diagnostics and found a way to force it into basic disk mode:
    - press Select and Menu to RESET, when the Apple shows:
    - press Select and Start/Stop to force the USB disk mode, you will notice the screen looks different from the standard connection mode.
    After that I was able to Restore to wipe the iPod and put the regular content back on. I will avoid photos, contacts, and calendar for now.
    Saved myself another trip to the friendly Apple store...

    I assume you've figure out that iTunes does NOT work for syncing calendars+contacts (even though it's supposed to). I went back to my old iGadget to do this and more. I highly recommend checking it out @ www.ipodsoft.com

  • Can not restore non jailbroken iphone 4 to ios 7.1

    I was using ios 6.1.3 on my iphone 4 8gb.
    Then i thought to update to ios7.1 since i heard that 7.1 is bit faster than 7.0.
    So i downloaded the ipsw for ipswdownloader.com.
    The problem is i can not restore it from itunes.
    The restore process started and at the last got an error 14.
    Now i tried thrice but still getting error 14.
    Can not solve this.
    Please help me.
    My device now has stuck on connect to itunes.
    Its not starting .
    Pls do help

    This is why you should only update your iPhone using the version of the software provided by Apple.
    Try putting your phone in DFU mode. A Google search will turn up the directions.

  • Clustering problem WLS 5.1

    Hi,
    we have an environment with 2 clusters ( 1 JSP & 1 EJB)
    both cluster consist each of 2 nodes, where 1 JSP and 1 EJB are running on a machine.
    although both clusters seem to act correctly at runtime ( and are also visible
    in the console as clusters), we get an exception at startup - only at th JSP tier
    which is rather confusing:
    Do Aug 08 06:11:15 CEST 2002:<E> <WebLogicServer> Unable to bind cluster MO as
    "WebLogic" into JNDI tree
    javax.naming.NameAlreadyBoundException; remaining name 'weblogic.cluster.WebLogic'
    at weblogic.rmi.extensions.AbstractRequest.sendReceive(AbstractRequest.java:76)
    at weblogic.jndi.toolkit.BasicWLContext_WLStub.bind(BasicWLContext_WLStub.java:1261)
    at weblogic.jndi.toolkit.WLContextStub.bind(WLContextStub.java:484)
    at weblogic.cluster.ClusterMain.start(ClusterMain.java:290)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1447)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:869)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:140)
    at weblogic.Server.main(Server.java:97)
    at weblogic.Server.main(Server.java:58)
    None of our clusters is named MO !
    Does anybody have a clue ?!

    Hi,
    we have an environment with 2 clusters ( 1 JSP & 1 EJB)
    both cluster consist each of 2 nodes, where 1 JSP and 1 EJB are running on a machine.
    although both clusters seem to act correctly at runtime ( and are also visible
    in the console as clusters), we get an exception at startup - only at th JSP tier
    which is rather confusing:
    Do Aug 08 06:11:15 CEST 2002:<E> <WebLogicServer> Unable to bind cluster MO as
    "WebLogic" into JNDI tree
    javax.naming.NameAlreadyBoundException; remaining name 'weblogic.cluster.WebLogic'
    at weblogic.rmi.extensions.AbstractRequest.sendReceive(AbstractRequest.java:76)
    at weblogic.jndi.toolkit.BasicWLContext_WLStub.bind(BasicWLContext_WLStub.java:1261)
    at weblogic.jndi.toolkit.WLContextStub.bind(WLContextStub.java:484)
    at weblogic.cluster.ClusterMain.start(ClusterMain.java:290)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1447)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:869)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:140)
    at weblogic.Server.main(Server.java:97)
    at weblogic.Server.main(Server.java:58)
    None of our clusters is named MO !
    Does anybody have a clue ?!

  • Data Caching in a Clustered Environment

              I want to cache read-only reference/code table data that will run in a clustered
              WLS6 environment. It's a JSP application and I am storing a complete HTML Select
              Control per reference/code table data in the cache. The question is where to
              cache it? I was going to put it in the ServletContext (JSP "application" implicit
              object), but the ServletContext is not replicated. I considered using JNDI, but
              there are problems with duplicate name errors when another server who doesn't
              originally bind the object tries to lookup, change and rebind the object. I guess
              JMS Multicasting is an option, but I don't want to implement JMS just for an application
              data cache.
              Any suggestions for a simple reference/code table read-only caching strategy that
              will work in a clustered WLS6 environment?
              

    If the data is strictly read-only, and you do not have to worry about cache
              integrity, then look at WebLogic JSP cachetag:
              http://www.weblogic.com/docs51/classdocs/API_jsp.html#cachetag
              You can use it to cache both the output and the calculations results
              (variables calculated inside the cache tag).
              The scenario will be exactly the same for non-clustered and clustered
              cases - using multicast to broadcast small invalidation messages (so the
              data can be refreshed from the database) is ok, but replicating application
              data is not (and you definitely do not want to use JNDI for this purpose).
              BTW, the initial CacheTag implementation in 5.1 (supposedly) had a 'cluster'
              scope and I assume it was multicasting fresh data after cache miss - there
              is no such scope in 6.0 implementation.
              If you still want replication you can look at javagroups:
              http://sourceforge.net/projects/javagroups/
              (distributedhashtable example).
              Olsen <[email protected]> wrote:
              > Cameron,
              > Thanks for the reply. However, as I stated below, I am not interested in
              > JMS, nor an EJB solution to the problem. It really is not that complicated of
              > a concept and I know a solution or two (ServletContext, JNDI), but none that works
              > in a WLS6 clustered environment.
              > Any other ideas???
              > Thanks...
              > "Cameron Purdy" <[email protected]> wrote:
              >>Dimitri had a clever (as ever) solution using JMS to maintain cache
              >>integrity:
              >>
              >>explanation at
              >>http://dima.dhs.org/misc/readOnlyUpdates.html
              >>
              >>d/l from
              >>http://dima.dhs.org/misc/readOnlyUpdates.jar
              >>
              >>--
              >>Cameron Purdy
              >>Tangosol, Inc.
              >>http://www.tangosol.com
              >>+1.617.623.5782
              >>WebLogic Consulting Available
              >>
              >>
              >>"Olsen" <[email protected]> wrote in message
              >>news:[email protected]...
              >>>
              >>> I want to cache read-only reference/code table data that will run in
              >>a
              >>clustered
              >>> WLS6 environment. It's a JSP application and I am storing a complete
              >>HTML
              >>Select
              >>> Control per reference/code table data in the cache. The question is
              >>where
              >>to
              >>> cache it? I was going to put it in the ServletContext (JSP "application"
              >>implicit
              >>> object), but the ServletContext is not replicated. I considered using
              >>JNDI, but
              >>> there are problems with duplicate name errors when another server who
              >>doesn't
              >>> originally bind the object tries to lookup, change and rebind the object.
              >>I guess
              >>> JMS Multicasting is an option, but I don't want to implement JMS just
              >>for
              >>an application
              >>> data cache.
              >>> Any suggestions for a simple reference/code table read-only caching
              >>strategy that
              >>> will work in a clustered WLS6 environment?
              >>
              >>
              Dimitri
              

  • How can i segregate an array of clusters with channels id in the cluster

    Hi All
    i am using a keithley 2010 DMM for power measurements,
    i am using the 2010 scan read VI which gives the reading output as an array of clusters, these clusters contain the measurement,units,channel.
    i have 6 channels for measuring voltage across and i want to make 5 readings per second on each channel which makes upto 30 readings per second.
    i want to segregate these clusters from the array according to the channel id and take the results,
    please tell me if we have function for this or you have any possible solution for the same.
    i would be very happy to hear from you and get this solved
    please help
    Thanks in advance
    Sandeep K Shyam

    yeah this looks great...thanks for your response,
    i have modified accordingly and attaching the VI, can you please look into this once
    also one more problem i have with this VI is whenever i am trying to run the VI, the  sub VI (Scan config.vi) gets popped up and waits for user response (next) cntrl+right arrow,  how can i get rid of this and run the VI in continues mode?
    i am attaching my VI along with the kei2010 lib,
    please check this
    Thanks again
    sandeep K shyam
    Attachments:
    sandeep-FinalKeithley20101.vi ‏822 KB
    kei2010.llb ‏901 KB

  • Error in stateless-clustering in weblogic-ejb-jar.xml

    Hi,
    This is my <weblogic-ejb-jar.xml> and I see an error in <stateless-bean-is-clusterable>. Can anybody please help me regarding this.
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/10.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/10.0 http://www.bea.com/ns/weblogic/10.0/weblogic-ejb-jar.xsd">
    <weblogic-enterprise-bean>
    <ejb-name>Sample1</ejb-name>
    <stateless-session-descriptor>
    <pool>
    <initial-beans-in-free-pool>10</initial-beans-in-free-pool>
    </pool>
    <stateless-clustering>
    <stateless-bean-is-clusterable>TRUE</stateless-bean-is-clusterable>
    </stateless-clustering>
    </stateless-session-descriptor>
    </weblogic-enterprise-bean>
    <weblogic-enterprise-bean>
    <ejb-name>Sample2</ejb-name>
    <stateless-session-descriptor>
    <pool>
    <initial-beans-in-free-pool>10</initial-beans-in-free-pool>
    </pool>
    <stateless-clustering>
    <stateless-bean-is-clusterable>TRUE</stateless-bean-is-clusterable>
    </stateless-clustering>
    </stateless-session-descriptor>
    </weblogic-enterprise-bean>
    <weblogic-enterprise-bean>
    <ejb-name>Sample3</ejb-name>
    <stateless-session-descriptor>
    <pool>
    <initial-beans-in-free-pool>10</initial-beans-in-free-pool>
    </pool>
    <stateless-clustering>
    <stateless-bean-is-clusterable>TRUE</stateless-bean-is-clusterable>
    </stateless-clustering>
    </stateless-session-descriptor>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    I am using weblogic 10.3 and EJB 3.0 Can I include all the EJBs in a single <weblogic-ejb-jar.xml> file and can I put it in the EAR->EarContent->META-INF folder, where the application.xml and weblogic-application.xml files exist.
    Basically, I am trying to include <initial-beans-in-free-pool> and <stateless-bean-is-clusterable> for each of my EJBs. Since there is no annotation equivalent for them in EJB 3.0, I had to include the <weblogic-ejb-jar.xml> file. I appreciate if anybody can suggest me if there is any annotation equivalent for these.
    Thank you,
    Sowmya

    Hi,
    1. please try with <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
    2. the EJB Specification requires "The deployment descriptor must be stored with the name META-INF/ejb-jar.xml in the ejb-jar file." So you shouldn't put the weblogic-ejb-jar.xml to EAR's META-INF folder.
    3. <stateless-bean-is-clusterable> has a default value as "true". so you needn't specify it in your weblogic-ejb-jar.xml if you just want to have the "true" value.
    4. default value of <initial-beans-in-free-pool> is 0. Since you're changing the default value, you'll have to specify it in weblogic-ejb-jar.xml. If you can put all EJBs in one ejb jar file, you can have only one weblogic-ejb-jar.xml in the META-INF folder of this ejb jar.
    Thanks,
    Amy

  • Event Server supports clustering / transactional safety?

    Does this new Event Server application server support clustering and/or transaction safety?
    I.e. in a trading type of application, how do you distribute load across multiple event servers and also, to what extent can you lose messages should a server instance suddenly fail?
    Thanks,
    Gary

    The 2.0 release does not support clustering, but clustering support is planned for a future release. Whether messages/events can be lost depends on the messaging system and protocol being used to send events to an Event Server instance. The Event Server provides a framework for plugging into JMS as well as most any socket-based messaging system. In environments where throughput is extremely high, it is common to run an application in a hot/hot configuration on duplicate hardware to avoid losing messages during failover for messaging protocols that allow message loss.
    Hope that helps,
    Seth

Maybe you are looking for

  • SMARTFORMS: 'OUTPUT CANNOT BE ISSUED error

    Hi, I have designed a smartform for Delivery document. One of the delivery has 700 lines of Packing for 1 single line item. When I execute this delivery, the output is not displayed The error message is "the output could not be issued". In debug mode

  • Regarding Test case

    Hi I am doing my file to file scenario. after completing what  are the test cases we check in sender file adapter and receiver file adapter? regards venkat.

  • Window XP sp2 share printer with Mac OS 10.9.2 pause cannot resume

    Hello All! I have a printer HP P2015 install in Window XP SP2. I share it over LAN to print. A user is using MAC OS 10.8.5 is pinting nomarling. But Another is using MAC OS 10.9.2 canot print to it because while print it alert pause and canot resume.

  • Logic X - Flickering cursor

    Please can someone help???!! I recently updated to Mountain Lion and Logic 9 to Logic X. Since then I have had a real problem with my cursor. It flickers between icons and is therefore a nightmare to work with. Its so frustrating and I've googled it

  • Restriction on textfield with autocomplete allow only 4 character in search case

    Hello everyone, Autocomplete text field  which shows the matching values only after, (e.g. 5) characters have been entered? plz help how it is possible..