DATA BACKUPS AND RESTORE IN ANOTHER COMPUTER

I have two machinem Main Machine and Backup Machine.
How i make backup from Main Machine and restore on Backup Machine
Any body has an idena please help out me
Thanks in Advance
Rgds
TeeJay

Dear Sudhir
I prepared Backup machine in the same way but registry i not try
because the version or oracle is different in this senerio main server is 8.0.5
backup is 10g
when i update backup server through export file the export command inserting data again in table this command is not replacing to the table after import my table showing duplicate data.
Therefore i am asking any other way of backup and restore.
I am try throug rman now if i get any good result i send to you or if you have any idea about rman write me back please.
Thanks for your reply and
Thanks in advance
Rgds
TeeJay

Similar Messages

  • Ideas for Providing User Level Data Backup and Restore

    I'm looking for ideas for implementing a user level application data backup and restore in an Apex app.
    What would be great is to have a user be provided an export file and a way to import this file. A bit overkill but hopefully never needed.
    Another option that is perfectly doable is a report that simply provides a means to create an export of the data. Since I already have an interface I can use an export to interface an export.
    Any thoughts?
    Hopefully I'm missing something already there for an end user to use.

    jlincoln wrote:
    "Do you mean "export" and "import" colloquially, or in the specific sense of the exp/imp/datapump utilities?"': I mean as in imp/exp Oracle utilities. Generally speaking, it would be neat to be able to export and import via an Apex an application. In this hosted environment I don't have that access but would this be a bad idea if you don't care about the existing data in the schema in which the data resides?I can envisage a mechanism using <tt>exp/imp</tt>, but since it requires <tt>dbms_scheduler</tt> external jobs and access to the file system it's highly unlikely to be possible in a hosted environment. (Unless you're doing the hosting?)
    Backup: Necessary for piece of mind and flexibility. I am working on a VB/Access user who does this today to get to the point when they can be comfortable with the backups occurring regularly and by the hosting site's DBA group.
    Restore: Like I said. I am working on a VB/Access user who does this today to get to the point when they can be comfortable with the backups occurring regularly and by the hosting site's DBA group. This is a very small data set. A restore would simply remove existing data and replace it with the new data.My opinion is that time would be better spent working on the user rather than a redundant backup and restore feature. Involve them in a disaster recovery exercise with whoever is hosting the environment to prove that their data is safe. Normally the inclusion of data in regular, effective database backups is sold as a major feature of APEX solutions.
    "What about security/privacy when this data ends up in uncontrolled environments?": I don't understand the point of this question. The data should not end up in uncontrolled environments. Just like the data in the database or its backups.Again, having data in a central, shared location protected by multiple levels of application, database, and OS security is usually seen as a plus for APEX over VB/Access. Exporting the data in toto to a PC/laptop that can be stolen or lost, and where it can be copied to USB drives/phones/email loses this protection.
    User Level: Because the end user must have access to the backup and restore mechanisms of the application.
    Application Data: The application data. Less than 10MB. Very small. It can be exported in a flat file downloaded by the end user. This file can then be used to upload and import via an existing application interface. For example.
    "I'm struggling to parse this for meaning.": When I say I have an existing interface I am referring to a program residing in the Apex application that will take data from a flat table structure (i.e. interface table), validate the data, derive data, and load into the target table structure.Other than the report export capability linked to above, there's nothing built-in to APEX that comes close to your requirement. If the data is simple enough that it can be handled in such a report, and you have a process that can read and recreate this export, then you have your backup/restore capability. If the data can't be handled in a simple report, then you'll need a more complex PL/SQL process to generate the file.

  • ASA 5505 - Backup and restore to another device of same model and version

    How can I backup the configuration of the ASA 5505 on 8.x and restore it to another ASA 5505 with same version? I have tried to save the running config to a file and then copy it to the new device and use the boot config: filename but it doesn't work. Or is there any other way to try? Thanks.

    Thanks Andrew, I had tried it but I was having issues with the fact that I kept both ver 7 and ver 8 of the OS images on the flash. So it booted from the first found (ver 7) and creating confusion for me as the config file was for ver 8.
    I noticed that it keeps the 192.168.1.1 IP even though in the config file it has another IP assigned. Is there other things that I need to check that do not change apart the IP address?
    Thanks.

  • Backing up and restoring to another computer

    Before upgrading to 10.5.7, I was able to back up iCal on one computer, then restore it on another computer so I would have a duplicate just in case. Now it won't do it at all. Both iCal versions 3.0.7 are the same on both computers. I'm starting to regret buying Leopart 10.5 altogether. Should've stayed with the old 10.4.
    Can anyone help?? Is Apple working on a fix?
    Do you know if Apple hired any software engineers from Microsoft by accident?
    Could it be that the new version is infected with a "swine flu" like virus??

    wildimaginations,
    Welcome to Apple Discussions.
    Before upgrading to 10.5.7, I was able to back up iCal on one computer, then restore it on another computer so I would have a duplicate just in case.
    How did you do that, i.e. what kind of duplicate did you have?
    Now it won't do it at all.
    Could you clarify that statement? What "won't do it at all?"
    Both iCal versions 3.0.7 are the same on both computers.
    Did you apply 10.5.7 to both computers?
    If you used Software Update, I would suggest that you try the OS X 10.5.7 Combo Update.
    ;~)

  • Rman backup and restore on another box with the same database name

    Hi,
    I am using the following script to backup the database, I want to restore the backup on another server with same database name but different datafile locations , Can some one help me in the restoration please.
    #set oracle_sid=LIVE
    run {
    allocate channel t1 type disk;
    backup database plus archivelog delete input format 'D:\Backup\ORACLE\LIVE\df_t%t_s%s_p%p';
    backup current controlfile;
    release channel t1;
    Thanks

    You need to use "set newname" before you restore your database.
    You can refer this http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmdupad.htm
    RMAN> connect target /
    connected to target database: TEST (DBID=2033933270)
    RMAN> run
    2> {
    3> startup nomount;
    4> restore controlfile from 'location/DF_T770331608_S104_P1';
    5> alter database mount;
    6> restore database;
    7> recover database;
    8> alter database open resetlogs;
    9> }Also, you have connected to the database TEST, so is the TEST database the new database that you want to create using restore method ?
    If yes, then how the status of the database is OPEN ? The database status should be nomount before you restore the controlfile.
    If the database is not started, then:
    RMAN shows as "connected to target database: TEST (not started)
    If the database is in nomount stage, then
    RMAN shows as "connected to target database: TEST (not mounted)
    If the database is in mount stage, then
    RMAN shows as "connected to target database: TEST (DBID=xxxxxxxx, not open)
    If the database is open mode, then
    RMAN shows as "connected to target database: TEST (DBID=xxxxxx)
    In the output you mentioned, RMAN is showing the status of the database as opened. So if TEST is the database you are creating, then it has to be in nomount stage. In your case, it looks like TEST is the primary database from which you have taken the backup.

  • Iphone4 would not restore Error -50. I have tried to restore and it restored it to the point that it created after 5.0 was installed. How can I get it an older restore point from my backups and restore it on another computer? The phone has been wiped out.

    Iphone would not restore---- Error -50. I have tried to restore, and it restored it to the new point that it created after 5.0 was installed. How can I get it an older restore point from my backups and restore it on another computer? The phone has been wiped out. I can see earlier backups in my C:\Documents and Settings\user\Application Data\Apple Computer\MobileSync\Backup folder. There are four subfolders in this address. I need my contacts, photos, and messages back. I know this is a common error but I can not figure it out. I have ran the other troublshoot items in the error steps for 13 and 14 like apple says. Is there a way to call apple and get a step by step of how to restore from another restore point? Does anybody have a solution????

    It tells you to go to Error 13 and 14 if you receive error (-50).
    Here is what I have tried...
    Error 13 and 14: These errors are typically resolved by performing one or more of the steps listed below:
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting. I have moved it around to different ports.
    Put a USB 2.0 hub between the device and the computer. Didn't change anything.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts. Removed all virus protection and firewall.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.Used the Microsoft fix it.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online. Doesn't matter.
    Try to restore from another known-good computer and network. I do not know how to do this or how to find the correct/full/complete restore point. There should be more information for this.

  • How to backup and restore working Mac OS 9 computer ?

    I have a working G4 running OS 9.0, and I would like to backup and restore that hard disk to a second G4 computer that is OS 9 bootable.
    I have a CD backup taken by Toast v4, of the entire disk, but I do not know how to restore the contents to the second computer. My previous attempt hosed the hard disk inside the second computer.
    I'm thinking I can boot up the second computer via cd-rom or external hard disk, but I'm not sure I can copy the contents from the cd-rom correctly. In particular, I'm guessing the boot sector is challenging to restore.
    I probably have some old OS 9 cd-roms around here, if I need to go that route.
    I've thought about removing the working hard disk, and using dd on a linux machine to make a clone of the drive. I'd prefer not to go that route, as I don't want to touch working hardware.
    I've also thought about hooking up a portable USB disk drive to my working OS 9 machine, and doing some sort of cloning. I'm not sure what program I would need to do that, and whether it's part of the OS 9 suite of tools, or a 3rd party tool. I used to own some various disk tools, but it's been so long I'm not sure I can find the cd's.
    So if anybody can point to some instructions on the net for me to follow, or have any suggestions, I'm all ears.
    Thanks
    mark

    If the second computer originally shipped supporting a newer OS 9.x
    system than the first 9.0, the other computer's OS9 version probably
    won't work since it would be too old. In the case of drag and drop,
    you can get away with a lot more than what an installer package may
    allow, since the installer's software can be avoided with Pacifist. So
    another computer's OS9.2.2 basic system could be used as a boot
    volume even if it is sparse and not the fully complemented OS 9.2.2
    that a full retail build would install from a rich full retail install disc.
    Usually the retail path was an OS 9.2.1 retail and the update to 9.2.2;
    but machines requiring OS 9.2.2 won't like a 9.2.1. Sometimes, since
    a drag and drop is not driven by installer software, you can use older.
    But machine specific bits, some critical for graphic card drivers & etc,
    would be likely missing unless the software used offered that support.
    If you can find one of these, it may work = note, out of stock:
    691-3638-A Apple G3/G4 9.2.2 (CD) System Software
    {This is a Mac OS 9.2.2 full installation CD, color Grey.}
    These do not come in retail packaging.
    http://www.welovemacs.com/6913638a.html
    Have fun, even if it isn't exactly as planned.
    Good luck & happy computing!
    { edited }

  • Backup and Restore of Redis Data

    My usage of Azure Redis is a cache to store snapshots of data for an event sourced system. We have millions of events stored in persistent storage that are aggregated and saved to redis. This provides us with fast access to the current state of an entity.
    However, to rebuild the Redis cache from scratch would take many hours as the number of events in the system is huge and constantly growing. 
    How in Azure Redis can we backup and restore data in case of failure? For instance, it would be nice to have access to an rdb file and archive it then restore when needed. We tried setting a non-Azure Redis as a slave of our Azure Redis however this does
    not work as it seems the Azure Redis doesn't have write access to it's working directory preventing it from writing an rdb file for sync.
    What are the recommended approaches to using Azure Redis as persistent storage? How can we backup/restore or even move data from one redis to another.
    Thanks!
    Drew 
    Drew Schaeffer

    Thanks for the response Mike. The interesting thing is on Saturday this didnt work. Today it looks like it is sync'ing succesfully. Below is the steps and output i saw on Saturday. I started it again today and it looks good so far. I will let it finish the
    sync and see what happens now. The redis is about 19gb on a Standard Pricing Tier.
    On the non-Azure Redis
    1. SET CONFIG masterauth <mykey>
    2. SLAVEOF myredis.redis.cache.windows.net 6379
    Then on my non-Azure Redis I see the following output. This ouput repeats until i kill the non-azure redis or set SLAVEOF NO ONE.
    [3468] 17 Jan 20:27:28.152 # Server started, Redis version 2.8.17
    [3468] 17 Jan 20:27:28.153 * The server is now ready to accept connections on port 6379
    [3468] 17 Jan 20:27:58.517 * SLAVE OF myredis.redis.cache.windows.net:6379 enabled (user request)
    [3468] 17 Jan 20:27:59.294 * Connecting to MASTER myredis.redis.cache.windows.net:6379
    [3468] 17 Jan 20:27:59.318 * MASTER <-> SLAVE sync started
    [3468] 17 Jan 20:27:59.322 * Non blocking connect for SYNC fired the event.
    [3468] 17 Jan 20:27:59.336 * Master replied to PING, replication can continue...
    [3468] 17 Jan 20:27:59.345 * Partial resynchronization not possible (no cached master)
    [3468] 17 Jan 20:27:59.348 * Full resync from master: ea5954fa6dcd0073585177b26c72f3e228309c2b:49968344771
    [3468] 17 Jan 20:28:23.207 # syncRead returned 0
    [3468] 17 Jan 20:28:23.208 # I/O error reading bulk count from MASTER: Resource temporarily unavailable
    Drew Schaeffer

  • Reformatting Computer's Hardrive: Need help with Backup and Restore?

    Hi,
    I'm getting ready to reformat my hardrive and I'm backing up all of my files. All apps will be reinstalled after the drive is formatted.
    I have a ton of music that I've purchased from itunes and mp3s that I've ripped from my CDs in my main itunes folder. I will backup this folder (if necessary). Do I need to back up the licenses? If so, where are they stored? Or, what's the best and most efficient way to go about this backup and restore process? If my Ipod has all my music/videos, will it just copy all the music/videos back to my newly reformatted hardrive while maintaining the original folder structure? I assume I will have to install a fresh copy of itunes first. Also, I'm worried about the licensing for the purchased music. Is there something special I need to do with these files?
    I appreciate it if someone can give me the detailed steps to go about this without issue. I'm thinking this is a pretty easy question to all the techies out there...
    Thanks,
    Brandon

    Back up or copy the iTunes folder. There are no licenses to worry about, buy Deauthorize your computer in iTunes before you reformat. After you restore everything play one of the songs you purchased from the iTunes Store and enter your Apple ID and password to Authorize your computer.

  • I recently did a backup and restore on my Iphone 4 because I was switching carriers. When i switched carriers i went back to I tunes to restore all that iI backed up I can't get any of my pics back contacts or anything. is there a way to recover the data?

    I recently did a backup and restore on my Iphone4 because iI was going to switch carriers. When I switched carriers I went back to I tunes to restore my backup and nothing was there .Some how I lost all of my data, is there a way I can retrive my data or not? I had all of my pics and contacts on the backup. please help..  

    When you say nothing was there, do you mean the backup wasn't there?

  • Backup and Restore of DQS (Data Quality Service SQL 2012) Databases

    We are currently using DPM 2010 running on Server 2008 R2 as our backup solution.  We will soon be leveraging the Data Quality Services in SQL 2012 along with the Master Data Service.  
    In the SQL 2012 documentation from Microsoft it states, “The backup and restore operations of the DQS databases must be synchronized.” 
    Otherwise the restored Data Quality Server will not be functional.  Currently I believe that DPM will run serialized backups of databases from one SQL server. 
    I was hoping someone could point me towards some documentation for backing up DQS with DPM. 
    Is anybody currently doing this?  If so have you been successful restoring?

    LogicalName cant be same for mdf and ldf. verify again with FILELISTONLY. Also you have put wrong logical name 
    MOVE N'OriginalDB' TO N'D:\sql data\TargetDB.mdf'
    Please paste the output of
    RESTORE FILELISTONLY FROM DISK = 'D:\backup.bak'

  • I had a backup of my data in android 4.0, I degraded it to version 2.3, Now I want to restore it, but I do not find the backup and restore option in Version 2.3.

    I had a backup of my data in android 4.0, I degraded it to version 2.3, Now I want to restore it, but I do not find the backup and restore option in Version 2.3. Help....
    the backup file is named .semc-fullbackup

    As far as I know, there was no backup application in the early release of Android 2.3 for Xperia U. I'm moving this thread to Android development. Hopefully got get some good advice there.
    What are your thoughts about this forum? Let us know by doing this short survey.

  • How Backup and restore BSP application to Local computer

    How Backup and restore BSP application to Local computer.
    How Backup whole Package to a Local file?

    check out this code sample.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3330a5e1-0701-0010-6e81-e88984de611a">Tool to Download Complete BSP Application</a>
    Regards
    Raja
    is the following thread of yours is answered? or do you have more questions.
    htmlb tableview with CSS
    Message was edited by: Durairaj Athavan Raja

  • Can I backup and restore on a new computer without changing my main iTunes computer?

    I just got AT&T to unlock my iPhone so that I can use it on multiple networks while I am traveling.  In order to complete the unlock, I must backup and restore the iPhone on my iTunes.  Unfortunately, my iMac that I use to sync my iPhone is being shipped across the planet and I won't have it for about a month.  Is it possible to install iTunes on a new computer and conduct a backup and restore, without losing anything on the iPhone and still be able to sync with my iMac when I receive it?

    Thanks for the clear and concise response  ;-)
    Anything in particular I need to be aware of?  i.e. after I install iTunes on the new PC and connect my iPhone, do I need to do anything specific to ensure that the phone is not overwritten?  Is it that simple that I can just connect the phone and it will back it up, then I do a restore and done?  (Sorry but based on all the discussion threads I've read around this, I am skeptical that it is that simple.)

  • Exchange Server 2013 backup and restoration question

    Good afternoon
    I am wondering if I can pick people's brains here if that's not too much trouble.
    I have recently implemented an Exchange 2013 environment with 3 servers (two multi-role CAS & MBX physical machines, and one further virtual CAS server). Everything is working correctly and mail-flow is fine. My question relates to backup and restoration
    procedures. I am running a single Database Availability group with the two multi-role servers members of the this group and I have one Mailbox Database on the DAG, passive on one member and active on the other. Failover has been tested and this is functioning
    as expected.
    The backup environment I have implemented is as follows. I have utilized a separate Microsoft DPM 2012 server that runs a nightly Bare Metal backup on both multi-role servers with a retention range of 14 days and I have protected the DAG using DPM with a
    nightly full-express backup and 4 hourly syncs on one of the multi-role servers. Furthermore the Mailbox Database is protected, again nightly with a copy-backup.
    I am confident I know what to do should the mailbox database become corrupted or lost or need to be restored for one reason or another (it would just be a case of restoring the backed up mailbox database using DPM to a pre-created recovery database), what
    I am not quite so sure on is what I would do should I lose one or both of the multi-role CAS and MBX servers (the third CAS I am not so worried about as it is not used for incoming mail flow from the internet and we really only use it for ECP as we did not
    want to expose this to the internet). I wonder what process should follow to restore my Exchange servers (I know how to perform the Bare Metal recoveries using WSB) and what configuration would be required after restoring the Bare Metal backups.
    I know this is a reasonably long question but if anyone has any advice for me I would appreciate it greatly in the unlikely event something goes horribly wrong with my Exchange environment.
    Thanks in advance

    Hi,
    Yes, Most of the configuration settings are stored in AD. Mail data and personal related data are store in Mailbox DB. We just need to take consideration of these two points.
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

Maybe you are looking for

  • Reporting Services - Content Manager shows all reports for all domain users even without permissions

    I have installed reporting services 2008 in:  Site Settings option / Security only 3 users have added: BUILTIN \ Administrators                 System Manager MYDOMAIN \ user1                          System Manager, System User MYDOMAIN \ user2     

  • Error in ME6C in Vendor Evaluation

    Hello I am running Vendor Evaluation report using transaction ME6C which shows the list of Vendors which are not evaluated. However I observed that system is displaying report for only 1 Purchasing Organization.I mean if the Vendor exists for 5 Purch

  • JS CS3 - PathItem

    Hi all, I'm finding it very difficult understanding the documentation for Illustrator Scripting. Can anybody help me figure out how I could change the properties of a selected pathItem which is actually a simple line? Especially stroke weight? Also a

  • Heat?  I had no clue...

    I thought that my macbook pro 2.0 was running hot. i called apple care and the gentleman explained that the case is slim, and the processors are powerful, yada, yada. so yesterday i used Handbrake to compress a dvd to mpeg4 with 2-pass encoding. the

  • HT201272 How do you download a previous purchase that did not work?

    I purchased a song, but, when I went to play it, it do not play the whole song?