Oracle backup & restore problem

Hi Team,
I am new to the RMAN, I want to test Backup & restore operation
I have database called Test , I am creating new table in the database called Test_table through SQL *coPlus create mmand.
Now After this I am taking backup the of all cotrolfile , datafile & snapshot file.
once again I am opening this database in SQL *plus & deleted the table (Test_table).
Now if restore back the database with backup set taken before deleting table. It is not showing me the Test_table.
What is the problem? Plz help..

Hi,
Thanks for replay,
Using Windows XP & ORACLE 9i
I am doing following steps.
Created one table ( Test_table ) in database my Test database.
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Administrator>rman
Recovery Manager: Release 9.2.0.1.0 - Production
Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
RMAN> connect target system/sreedhar@Test;
connected to target database: Test (DBID=1558624384)
RMAN> show all;
using target database controlfile instead of recovery catalog
RMAN configuration parameters are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'C:\Testing\CTL_
%F';
configuration for DISK channel 2 is ignored
CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT 'C:\Testing\DBF_%U';
CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT 'C:\RmanBack\std_%U';
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'C:\Testing\CHA_Dev_%U_%S_%P';
CONFIGURE MAXSETSIZE TO UNLIMITED; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\TESTING\SNCFTest.ORA';
RMAN> backup database;
Starting backup at 06-OCT-06
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=9 devtype=DISK
channel ORA_DISK_1: starting full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
input datafile fno=00001 name=C:\ORACLE\ORADATA\Test\SYSTEM01.DBF
input datafile fno=00002 name=C:\ORACLE\ORADATA\Test\UNDOTBS01.DBF
input datafile fno=00005 name=C:\ORACLE\ORADATA\Test\EXAMPLE01.DBF
input datafile fno=00010 name=C:\ORACLE\ORADATA\Test\XDB01.DBF
input datafile fno=00006 name=C:\ORACLE\ORADATA\Test\INDX01.DBF
input datafile fno=00009 name=C:\ORACLE\ORADATA\Test\USERS01.DBF
input datafile fno=00003 name=C:\ORACLE\ORADATA\Test\CWMLITE01.DBF
input datafile fno=00004 name=C:\ORACLE\ORADATA\Test\DRSYS01.DBF
input datafile fno=00007 name=C:\ORACLE\ORADATA\Test\ODM01.DBF
input datafile fno=00008 name=C:\ORACLE\ORADATA\Test\TOOLS01.DBF
channel ORA_DISK_1: starting piece 1 at 06-OCT-06
channel ORA_DISK_1: finished piece 1 at 06-OCT-06
piece handle=C:\TESTING\DBF_0QHV5L4T_1_1 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:01:05
Finished backup at 06-OCT-06
Starting Control File and SPFILE Autobackup at 06-OCT-06
piece handle=C:\TESTING\CTL_C-1558624384-20061006-01 comment=NONE
Finished Control File and SPFILE Autobackup at 06-OCT-06
RMAN> exit
Recovery Manager complete.
After this backup I am deleting this Test_table table using SQL *PLUS Drop table  clause.
Also deleted the all .DBF files from Test folder. and I am restoring now the old backup set which has the information regarding the Test_table.
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Administrator>rman
Recovery Manager: Release 9.2.0.1.0 - Production
Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
RMAN> connect target system/sreedhar@Test;
connected to target database (not started)
RMAN> startup mount;
Oracle instance started
database mounted
Total System Global Area 252779340 bytes
Fixed Size 453452 bytes
Variable Size 125829120 bytes
Database Buffers 125829120 bytes
Redo Buffers 667648 bytes
RMAN> show all;
using target database controlfile instead of recovery catalog
RMAN configuration parameters are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'C:\Testing\CTL_
%F';
configuration for DISK channel 2 is ignored
CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT 'C:\Testing\DBF_%U';
CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT 'C:\RmanBack\std_%U';
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'C:\Testing\CHA_Dev_%U_%S_%P';
CONFIGURE MAXSETSIZE TO UNLIMITED; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\TESTING\SNCFTest.ORA';
RMAN> restore database;
Starting restore at 06-OCT-06
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=11 devtype=DISK
channel ORA_DISK_1: starting datafile backupset restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
restoring datafile 00001 to C:\ORACLE\ORADATA\Test\SYSTEM01.DBF
restoring datafile 00002 to C:\ORACLE\ORADATA\Test\UNDOTBS01.DBF
restoring datafile 00003 to C:\ORACLE\ORADATA\Test\CWMLITE01.DBF
restoring datafile 00004 to C:\ORACLE\ORADATA\Test\DRSYS01.DBF
restoring datafile 00005 to C:\ORACLE\ORADATA\Test\EXAMPLE01.DBF
restoring datafile 00006 to C:\ORACLE\ORADATA\Test\INDX01.DBF
restoring datafile 00007 to C:\ORACLE\ORADATA\Test\ODM01.DBF
restoring datafile 00008 to C:\ORACLE\ORADATA\Test\TOOLS01.DBF
restoring datafile 00009 to C:\ORACLE\ORADATA\Test\USERS01.DBF
restoring datafile 00010 to C:\ORACLE\ORADATA\Test\XDB01.DBF
channel ORA_DISK_1: restored backup piece 1
piece handle=C:\TESTING\DBF_0QHV5L4T_1_1 tag=TAG20061006T122500 params=NULL
channel ORA_DISK_1: restore complete
Finished restore at 06-OCT-06
RMAN> recover database;
Starting recover at 06-OCT-06
using channel ORA_DISK_1
starting media recovery
media recovery complete
Finished recover at 06-OCT-06
RMAN> exit
Recovery Manager complete.
When i check table Test_table in SQL *Plus using command DESC Test_table; it is showing me error object Test_table does not exist

Similar Messages

  • System copy using oracle backup/restore - sapinst does not restart after re

    I am performing a system copy of a BW3.5 system, using the system copy procedures and Oracle backup/restore. on the target node, I have installed the CI. I have run sapinst to install the database up to the point when it tells me to install the Oracle Server software, then restore the backup, and choose 'OK' in the dialog box. As I did not want to leave this dialog open, I chose 'cancel'. I have now installed Oracle, and restored the database, but when I try restarting sapinst I get the following error, and sapinst quits:
    FKD-00049  XML - Parser error: error: invalid symbol '' in literal 'SAPSYSTEM_DB
    indind_ind_ind_ind_0_SAPSYSTEM_ind_ind_ind_ind_ind_0_SAPComponent_ind_ind_ind_
    ind_ind_0_SAPComponent_Accounts_ind_ind_ind_ind_ind_0_SAPCompon' in line 1, 1
    in file
    ERROR      2007-08-20 15:06:13 [iaxxcsihlp.hpp:208]
               main()
    FCO-00031  An error occurred during the installation of component Problem: error
    in persistency subsystem.. Press the log view button to get extended error info
    rmation or press OK to terminate the installation.
    Has anybody ever experienced this before, or have any clues as to what the problem is? This is a production system, and it is supposed to be available by the end of the week....

    Hi Angie,
    You should always mention OS details while drafting message.
    First, CHeck you must selected same SID as earlier while installation or Oracle and DB.
    Secondly, you can skip this phase in SAPInst, bit technical for you.
    Alternatively,
    Recommendations
    - Set parameters as per SAP Note 356370
    - Change the swap mode from 'intermediate' to 'deferred' as described in
      SAP Note 97179.
    - Add /usr/sbin to the path of the user <sapsid>adm in the file
    .cshrc, .login, .profile in the user's home directory. Enter the
    following command(s) at the end of .cshrc, .login, .profile:
      a) If using a csh, enter:
           set path=(/usr/sbin $path)
      b) If using a sh, enter:
           path=/usr/sbin:$path
           export path
    Br,
    Amit Lal
    Reward suitable pts.

  • How to do oracle  backup,restore,recovery using php?

    Is there anyone know how to do oracle backup,restore and recovery using php? any tips... is there any ways to do that?

    Are you referring to performing RMAN backup operations via the OSB web tool? RMAN operations are managed, not via the web tool, but through RMAN command line or Oracle Enterprise Manager (EM)
    Donna

  • System Copy/ Oracle Backup/Restore as part of migrating from 32 to 64-bit

    Source system (I386): R3E47 Ext Set 2.00 SAP_BASIS 620 Kernel 640 Windows 2000, Oracle 10.2.0.4, non-unicode
    Target system (x86-64/AMD64): R3E47 Ext Set 2.00 SAP_BASIS 620 Kernel 640 Windows 2000 Oracle 10.2.0.4, non-unicode
    Am using method System Copy/ Oracle Backup/Restore to migrate from 32 to 64 bit (HOM System Copy).
    Actions on source system:
    a) Upgrade from 9.2.0.7 to Oracle 10.2.0.4
    b) Used ora_br_copy.bat to generate CONTROL.SQL and init<sid>.ora
    c) Switched logfiles
    d) Performed offline backup
    Actions on target system:
    a) Installed Oracle 10.2.0.1 and patched it to 10.2.0.4
    b) Used CD 51033746 "6.20/6.40 based products Installation Master (Edition May 2008)" to install the CI
    c) Started installation of the DB instance selecting System Copy/ Oracle Backup/Restore (same <SID> for source and target systems)
    Relevant input parameters used:
    Database schema: SAPR3
    Database character set: US7ASCII
    d) When SAPINST stopped to allow for restoring of datafiles, logs and init<sid.ora>:
    - copied datafiles and logs to the usual place
    - copied CONTROL.SQL (edited to include utilrp.sql and utlrp.sql for the migration from 32 to 64) to the DB-instance intallation . directory.
    - copied generated init<SID>.ora to the <ORACLE_HOME>\database
    e) Resumed SAPINST.
    David Byrne in a previous post suggested: "check your oracle alert file in case there are errors there you may need to update the word size for the 64bit install. Errors like this in the oracle alert file would suggest that.,
    ORA-12012
    ORA-06544: PL/SQL: internal error, arguments: [ORA-06544: PL/SQL: internal error, arguments: 56319], [, ], [, ], [, ], [
    ORA-06553"
    Well, I am getting ORA-06553: PLS-801: internal error [56319] but then my edited CONTROL.SQL (which is mainly a CREATE CONTROLFILE as it would be obtained with a ...BACKUP CONTROLFILE TO TRACE) includes at the end this:
    shutdown immediate
    startup upgrade
    spool utlirp.log
    @?/rdbms/admin/utlirp.sql
    spool off
    Shutdown immediate
    Startup
    Spool utlrp.log
    @?/rdbms/admin/utlrp.sql
    Spool off
    exit
    which is supposed to do just that... (I think)
    Help, anyone?

    > Trying to cheer me up, are you?
    No
    > It is NOT free that reorganization! Quite expensive, actually, paid for in time! But you're right... the database needed a reorg anyway :-\
    True, not "free" - it takes time but the data will be nicely aligned then
    > And why would I have to reconfigure all those 10.2 features? Everything's either in the database or init<sid>.ora, ain't it? And my database is a pretty 10.2.0.4 with all those nice features already activated...
    No - not really auotmatically if you upgraded from 9.2 And "init<SID>.ora" is past, you nowadays use "spfile" If, of course, e. g. Automatic Undo was activated in 9.2 then it's there of course in 10.2 too.
    > One sticky point... I haven't really read the r3load procedure yet and I will before I import, but... I would say I don't have to do anything about the 32->64 bit, right? I mean, it should behave properly while reloading on 64-bit...
    The exported content is about 10 % of the size of the system, it's database and OS independent so yes, you can import it nicely on 32bit. Another tip: make sure you don't just use the default configurations for R3load, it will take a HUGE amount of time. Use the package splitter (builtin-in in sapinst) so you get a much higher parallelism when importing.
    Markus

  • E71 Backup/Restore problem after firmware update

    after i restore the data using the PC suite, I'm facing a connectivity problem, No MMS and web browsing are working, even after i re-install the settings from the provider and setup wizard, same thing, even the wireless connectivity is not working.
    note that they are working be4 i do the restore (plain phone).
    any recommendation.
    It's never too late to learn ....

    I upgraded my firmware (why do nokia call it 'software'?), which i kind of regret now. I don't see any difference to my phone, plus i hit a major problem.
    Before upgrading i backed-up my phone.
    After upgrading firmware i tried to restore the backup to my phone - wouldn't work!?!?!?!?! - plus the phone said that i had a massive error and had to take my phone back to retailer. it would not restart.
    Seriously crazy
    FIX:
    'Hard-reset' the phone (erases memory and takes you back to basic nokia phone software) -  While turning the phone on you hold down 3 buttons: " green-phone & 3 & * ". Hold down for about 10 sec's. The phone should start working again with the new firmware - albeit with only basic settings.
    Go to the backup-restore, and restore from your last backup.
         HOWEVER, UNTICK 'phone settings'.
    This should get almost everything back for you (calendar,contacts,etc), except for any software that you had previously downloaded and installed on your phone (e.g. google maps, fring, skype, youtube, etc). Easy enough to download & install again. Also, you might want to ring your phone company and get them to mms you the configuration settings for internet and mms again.
    WHY WAS THERE A PROBLEM? I believe that the old settings of the previous firmware are NOT compatible with the new firmware. This makes the phone effectively stop working when you restore the backup.

  • Homegneous System copy Specific DB method Oracle Backup/Restore Sapinst

    Hello colleagues,
    Following the documentation, I´ve one doubt about the above method, is it needed to install again the SCS instance when the system is installed in one host and we want just to refresh database.
    I mean, we want to refresh CRM quality system from Production system. It´s a ABAP+JAVA system, so i have to prepare a backup and export Central instance through sapinst in source system.
    Afterwards it´s needed to follow the three steps in sapinst, Install SCS instance, Install database instance and install central instance (database copy section) . Or as we´ve already installed our quality CRM system, it´s just enough with installing database instance and central instance (using backup/restore method and exported data from source system)
    Thanks a lot for this info because in the SAP guides it´s not clear from my point of view.
    Regards

    Enrique José Marcos wrote:
    Hello colleagues,
    Following the documentation, I´ve one doubt about the above method, is it needed to install again the SCS instance when the system is installed in one host and we want just to refresh database.
    I mean, we want to refresh CRM quality system from Production system. It´s a ABAP+JAVA system, so i have to prepare a backup and export Central instance through sapinst in source system.
    Afterwards it´s needed to follow the three steps in sapinst, Install SCS instance, Install database instance and install central instance (database copy section) . Or as we´ve already installed our quality CRM system, it´s just enough with installing database instance and central instance (using backup/restore method and exported data from source system)
    Thanks a lot for this info because in the SAP guides it´s not clear from my point of view.
    Well i didnot get your question properly, but as per my understanding if you have only ABAP instance installed then you can go with the Database resoration method but as you said ABAP+JAVA instance both are there so in that case you need to build the export of complete system through Sapinst and then you cn perform the same export file to install the target system which will be your Quality.
    Another option is that just restore the database via database restoration method then try to restore the JAVA stack by file system method which is i think not supported by SAP if i am not wrong but it can be done i tired the same on XI system.
    Regards,
    Subhash

  • SAP ORACLE BACKUP RESTORE

    Hi all,
    +Please assist me with a guideline of carrying out a backup restore,this is to test and ensure that we can be able to restore the backup in the case of a disaster. we perform a Full backup daily and are using BRTOOLS.+
    Thank you.
    Regards,

    Hi,
    you need to do the following
    1) Copy the log files of the backup date which u want to restore.
    2) Create controlfile from production using command alter system backup controlfile to trace;
    3) restore the backup on target system using brrestore command.( assumption here is your target system is already installed)
    For more details you need to refer help.sap.com
    Regards,
    Deepak Kori

  • Time machine backup restoring problem

    i recently restored my mac. i saved everything through time machine on a hd. i want to restore some notes from the inbuilt notes app from mac. i know the folder is hidden and sandboxed and all and i followed the procedure, but MY PROBLEM IS that i dont have a containers folder in the backup folder. i typed in search box and everything but dint come. now the peculiar part is that when i typed com.apple.notes there was a folder. but when i opened it it dint have the data-library-core data folders. the other thing is that when i looked for the folder on my mac, it was there but the end instruction said that there should be a p18.notesexternalrecord thing in the 0 folder, which wasnt there either. somebody plz help because my very important documents are there and my job may be at stake. please help.

    Quit Notes and temporarily disable iCloud synchronization, if applicable.
    Triple-click the line below to select it:
    ~/Library/Containers/com.apple.Notes
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu. A Finder window should open with an item selected. Enter Time Machine and restore the selected item.

  • Backup restoring problem

    i recently updated my n95 with the v20 update.
    before that i backed up my phone data using the content copier from the nokia pc suit.
    after the update what ever i try it wont restore my data back to the phone...???? very infurating as you can imagine,
    anybody have a solution to this problem
    i use the 6.82.22.0 nokia pc suit version....
    cheers

    I hope that by now you have that problem solved.
    It is in fact infuriating. I've been there...
    And that is only one of the vast array of problems Nokia PC software brought me.
    However I recently reinstalled Nokia Nseries PC Suite latest version, and just out of curiosity I tried the backup and restore, and bingo, it worked fine.
    But as it was too good to be true, the included Nokia Music Manager refuses to run.
    Owning a splendid N95 8GB for 6 months now, I learned very early to use a 3rd party PC software...

  • From iPhone 4 to 5 backup restore problem.

    Today i've taken my new iPhone 5, but thing from traslate my backup from a iphone 4 to the new wasnt smoth like usual i explaine:
    1) I've done a backup of my iphone4 whit cable on iTunes Mac ( 1.8.2 ) last versione of itunes ofcorse.
    2) I've turned on the iphone 5 , started the first step and when it asked me if i want restore from iCloud , itunes, or new i've docked the iphone 5 to the Mac with the lighting cable with itunes open and click on restore from bacup.
    3) I've selected the just created backup from my iphone 4 and clicked next.
    At this poing reset and restore process started but and the end of that iphone 5 was complitly useles, stay on black screen, if i click on ON button apple appear and after few second turn off again.
    I'd to restore the phone with the DFU mode.
    Than i've tried again, and than iphone dead again.
    DFU again and restore.
    4) So i've tried another way. I do every night the iCloud backup of my iPhone 4 so i've tried to restore that backup and the process seems to stard correcty.
    5) After 15 minutes of gray screen and blue progressing bar, iphone turned on and show me the icon and the the application download process started.
    6) After 3-4 minutes i've receved a message that tell me that the restore proces is incomplete, but application continued to download and no missing data in contacts and mail.
    7) The download started very very very slow to download the watsapp app put something like 10 minutes, and TomTom was the next, so i've plugged the cable again and started the sycronization from the Mac. Everything goes fine, the apps was installed , it took a little long , but i've alot apps. But the sync process cant end. IT stuck on step 6.
    8) Tryed again and even if there is noting more to sync  ( i took few second ) it stuck always in the end of process.
    i'de a group o message in the iMessagge app tha make my phone crash istantly but solved delting it..
    Any advise of how to fix? I've chaged alot of iphoens and never had problem like this to restore my data.

    Be sure to backup your 4 to your computer. Then, sync the 5 using the back-up from the 4. Then backup the 5. You will get MOST ALL of your information. Some things like recently added apps didn't go to my 5, neither did some music, but when I synched with the computer via iTunes I THINK they all reappeared. HOWEVER, my ical on the computer and my phone have more information than my cloud calendar. I also have more contacts on my iphone than in the cloud. Be sure to back up your 5 before doing a cloud sync.....I spent 2 hours on technical support last night, and he is going to call me back for another hour to two, to migrate all my info. BE CAREFUL, and if you have any "special circumstances," call Apple support. If you aren't sure what to do it is worth the time, effort, and expense, if your free support has ended! Having more than one apple ID is a pain. (I had one from prior use of Mobile Me, and a different one for iTunes, so my info is in two places, and won't all sync to my phone!)

  • Moving to a new PC - Backup / Restore problem (Help me John Ellis!  :-)

    I’m embarrassed to ask this. But I need help. I have spent probably 25 hours on this (mainly reading forums) and nothing has worked. Here’s my situation:
    I was using Photoshop Elements 7 on an old Windows XP PC.
    I tried to move my catalog to another computer using Backup and Restore (following these instructions: http://kb2.adobe.com/cps/402/kb402894.html).
    I used “Backup” to back up to an external hard drive.
    I connected the external hard drive to my new PC (Windows 7). I used Photoshop Elements 7 to “Restore” to the C drive. Selected New Location and restored into the Pictures Library.
    Problem: The “Restore” had two major problems
    The thumbnails all have question marks
    When I click on any of the photos, and look at its Properties, they are all pointing to the external hard drive (drive “E”). (Interesting, all the photos were copied to the C drive of my new PC also…they are in the Pictures Library. When I unplugged the E drive and restarted Photoshop Elements, the photos’ Properties were now pointing to the C drive. So that’s good. Except that about 10% of my photos still have the question marks.)
    To make sure I hadn’t lost my mind, I used my external hard drive and did a Restore to another PC. And had the identical experience.
    Any advice? Thanks!

    It seems that some path has become corrupted due to which the rest of the files are shown missing. Try reconnecting the files manually.

  • How to do oracle backups/Restore

    hi,
    can any one send me the steps for taking database back ups and restoring it.
    thanks.

    Hi,
    Very simple.........
    Just open the Oracle documentation.
    Go to the Backup and Recovery module.
    Start going through backup methods.
    So on Serious note...
    First of all tell whether you want backup and recovery as User managed or Recovery Manager(RMAN).
    They both have their respective steps.
    For more information go through this:-
    http://www.oracle.com/technology/deploy/availability/htdocs/BR_Overview.htm
    and other oracle docs.
    Regards.

  • Database backup restore problem

    This question was asked in Setember but was not answered and is now archived.
    I'm using final cut server 1.1.1 on snow leopard Server.
    i can not restore my backup file(XXXXXX.zip)
    below is the error display....
    Checking for other backup processes...
    Checking backup archive...
    No errors detected in /XXXXX.zip for the 2 files tested.
    Checking backup version against current installed version ...
    Got version info. Backup file SourceVersion: 10336, Current SourceVersion: 10336
    Stopping the server...
    Restoring database support files...
    Initializing a new database...
    Restoring postgresql.conf ...
    Restoring database from backup file '/XXXXX.zip'...
    Restore failed: unzip exited with code 81. <---- what is code 81 ????
    what's the problem ????? anyone help me...
    I have substituted XXXXX for the name of my backup file
    I really need some help here. My database was lost and I need to restore the backup. We have a lot of hours of cataloguing and metatagging in there!
    thanks

    Hello Everyone,
    I haven't solved the problem, but I have found the root of it. The short answer is DO NOT RUN FINAL CUT SERVER 1.1.1 ON A MACHINE WITH SNOW LEOPARD SERVER!!!
    I finally realized through a long and painful process of trying to restore our database, rolling back to Leopard server, upgrading again to Snow Leopard Server, and going back again to Leopard Server, that ALL of our database backups created after the Snow Leopard Server upgrade cannot be restored in FCServer 1.1.1. I don't know if FCServer 1.5 will read them, and I'm not about to spend the money to find out.
    I'm really disappointed here. Apple does say that FCServer 1.5 is the compatible version to run with Snow Leopard server, but they certainly don't warn of the disaster that could occur if you try to run FCserver 1.1.1 with Snow Leopard Server.
    Right now I'm trying to figure out how to extract the data from hundreds of items that have been entered so that we don't have to re-enter them all again.
    So again, be warned. If you are upgrading to Snow Leopard Server, upgrade your FCServer too. At least I hope that's all it takes. For our part, we're back to Leopard Server and staying there for a while.
    Regards,
    Wayne Giesbrecht
    Senior Media Developer
    University of Saskatchewan

  • C3-00 backup restore problems.

    The backup function on the phone has some considerable limitations/problems:
    - home screen settings are not restored.
    - ringtones are not restored.
    - only applications preinstalled or downloaded from ovi store are restored correctly. Unsigned and third-party signed apps (e.g. opera 5.1) are restored as invalid jar files. These files cannot be executed, only deleted. Besides the invalid jar files directories created with a _private postfix (for every app). These directories contain icons only.
    This behavior is not wanted and
    causes problems for the user. For example the free password app keepass mobile became invalid after a backup and the stored passwords became inaccessible.
    Nokia Lumia 520 3046.0000.1329.2001 RM-914
    Nokia Asha 302 V15.09 22-05-13 RM-813

    1) Is it OK to upgrade firmware/software if it is a Tesco PAYG?
    Firmware upgrades are allowed & depends based on the region / service provider.
    2) Where do I find the firmware upgrade
    Visit http://europe.nokia.com/support/download-software/device-software-update/can-i-update 
    3) Where do the apps get downloaded to on the phone. I downloaded a couple of apps from the app store but can't find them on the phone
    Usually downloaded apps should be found at : Menu > Applications > Extras > Collection
    Pls click the green star at left if you find my post useful.
    C3-00 V07.20 Devices since 1999 Motorolla A130 ETACS, MicroTAC ETACS, M3788, Accompli 008, C200 Nokia RinGoIII (NHX-7A) ETACS, 7250i, 3210, 5210, 6030, 3230, 2300, 2310, 3110c, 6300 Ericsson KF788 TDMA, A1018s Sony Ericsson K510 Samsung SGH-600, C210, GT-C3200 Blackberry 7130g

  • HT4946 Yesterday I brought home my new iPhone 5!  Love it.  Backup-Restore problem

    Yesterday I brought home my new iPhone 5!  Love it.  Problem is I cannot put the stored information, that I backed up on iTunes from my iPhone 4S, onto the iPhone 5.  I continue to get a message that the file is corrupt, or won't sync with the new device.
    I have a MacBook Pro OS 10.8.2.  I have tried to open the back up file through the Library, etc with no success.  There is important information I do not want to lose on that backup.  A clerk where I purchased the phone told me it would be easy to just back up the 4S, and then plug the 5 in and all would be well.  Perhaps clerk mistaken?
    Can I somehow open the backup on my computer?
    Is there another way to sync the info to my new phone?  I'd prefer not to open an iCloud account.
    Thank you so much for any advice!
    God Bless you!

    Have you tried restarting the computer and the phone.?

Maybe you are looking for

  • Firefox 4.0 not responding minutes at a time in Windows 7

    I've been a Firefox user for many years. Tried Firefox 4 beta for several days with no problems. Updated to 4.0 and now constant "not responding" messages which last several minutes at a time.

  • Need to create/buy/Use a Web based Image Editor

    Hi all I'm new here, just got a new project for printing shop, they need to have their users editing Business cards to put their own information. So there will be a tamplet of cards and user can pick up up and edit it accordingly and save it to the s

  • ICloud music HELP!

    When I first got my Iphone 5, I was able to access my entire music library on my phone through my music icon and icloud....but now I can only access one album (the most recent one I bought from my phone). What happened and how do I get it back?  I've

  • Itunes security update fails when trying to download a song.

    I am trying to download a song from iTunes store and get a prompt to answer 3 security questions. I fill them out and enter other required data, then get an error that the answers cannot be saved. Any idea on how to resolve this?

  • Flush SGA

    Hi All, Is there any way to flush the entire SGA (not just Shared Pool) without bouncing the DB? Any suggestions / advice will be appreciated. Thanks in advanced. Bhupinder