N97: backup procedure bugged

Hi all,
The backup procedur has a bug.
If you have setted to store the messages in e: after that you made a backup on the microsd and you  open message it will be an error message about the memory is not avaible and the memory storage will set once again in C:

Lucky you got ur refund
i am gonna have to stay with this **bleep**ing phone but in like a year i am going to sell it to someone unlucky guy ans then get a coolest phone. oh yeah!
and i will never going to buy any Nokia **bleep** phone, NEVER, NO MORE NOKIA!!

Similar Messages

  • Correct backup procedure

    What is the correct procedure to make.
    1. Every evening a "hot" on-line back.
    2. Every saturday evening a "full" backup.
    Message was edited by:
    olivejuice

    The databases are running in archive mode.
    Daily we do an on-line backup at 10pm.
    We have an incremental tape backup of our system every night.
    On saturday, I manually shutdown the databases and I copy the ORADATA files to a directory that is backup with our full tape backup during saturday night.
    It's this procedure that I want to automate.
    I can only create one backup procedure in EM console.
    So my question is, how can I create an extra weekly off-line (with shutdown and restart of the databases) backup thats runs automatically.

  • Proper Backup Procedures with External Hard Drives

    I use external firewire drives for all of my photos and I have a quick question about backup procedures. I currently use Intego's Personal Backup X5 software solution and I wanted to know whether it is better to backup your files or Sync your files when making duplicate drives?

    Aperture's vault function will "sync" your library with your vault. This means that the vault will only hold one specific version of your library, which is fine for most users. The vault file will be more or less the same size as your Aperture library file.
    If you want to make incremental backup of your library (which will allow you to restore specific versions of your library) then you could take a look at "Backup 3" which can be downloaded in a trail version here:
    http://www.mac.com/1/solutions/backup.html
    Incremental backup will mean that your initial backup file plus all your incremental backup files will fill up more space on your harddisk than the size of your Aperture library. (incremental = adding)
    Karsten

  • N97 Backup .... help

    hello all ,
     I did a Backup on the SD Card , then updated the phone ... how can I restore the backup from SD Card , like Contacts mainly ?
    N97 .. Working or Not , it's still a *bleeing* Rip OFF .
    Solved!
    Go to Solution.

    As posted by radical24 in your other thread it will be possible only if you have taken a back-up or the contacts are stored on SIM..
    /t5/Nseries-and-S60-Smartphones/n97-backup-help/td​-p/828553
    --------------------------------------------------​​-------------------------------------------------​-------​------------------------------------------​--------​--If you find this helpful, pl. hit the White Star in Green Box...

  • Backup procedures documentation

    hi guys
    Im a new dba here n have been asked to document the backup procedures. they didnt have any documentation till now. Could anyone share any template to document the backup procedures. Thanks in advance.

    10g Release 2 documentation will help -
    http://www.oracle.com/pls/db102/portal.portal_db?selected=4

  • N97 Fm transmitter BUG

    Hello i'm the owner of a nokia n97,laster sofware version 21.0.0.045v.I can't activate the fm transmitter.I selecte it and it asks me if i want to activate it (yes/no )but i select yes and nothing i mean nothing happens it just stays turned off
    is it a bug?   Thank's for reply
    Ce traiesc eu intr-un e46 330ci in cateva minute nu traiesc altii intr-o viata intreaga

    It's a pain to do, but it's often advisable to reset the phone after a software upgrade, as there could be conflict between the settings you had on the previous software and the new  version !
    If you decide to do it, backup your contacts, calendar and notes ONLY, dial *#7370# followed by 12345 and the phone will reset, you will need to set it up as though it was a new phone, and it should resolve your problem, if the FM transmitter still fails to work it may be a hardware issue and you will need a care centre. I have an N97 on the same firmware and it works fine !
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Hot backup procedure

    Hello, I have a database that takes in between 80 to 600 transactions per day through an external feed. I need to implement a hot backup that will run once a day. I don't need to do point in time recovery because I can restore from the prior nightly backup and then replay the tlog file from the external feed. What is the best way to implement a hot backup. Is it as simple as running a sql procedure that will loop through all the tablespaces and put them in backup mode and then copy them to another location? I am open to all and any recommendations. The database is Oracle 9.2.0.1 running on Windows 2000 or 2003 server. Please provide any scripts if you can. Thank you and have a great day!
    David

    I wrote a dynamic hot backup script once, you can look into it if you want:
    -- YJAM - Modele backup dynamique
    -- SQL*Plus Env
    SET TIM OFF TIMI OFF ECHO OFF VERIFY OFF FEED OFF TRIMS ON
    -- Variables dépendantes du systeme
    DEFINE DEST_DIR=C:\Backup
    DEFINE DIR_SEP=\  -- win*=\    | unix=/
    DEFINE SH=host    -- win*=host | unix=!
    DEFINE COPIE=copy -- win*=copy | unix=cp
    DEFINE SUPPR=del  -- win*=del  | unix=rm
    DEFINE MARGE_ARCHIVELOGS=10
    -- Preparation pour les archives
    COL FARCH NEW_VALUE FIRST_ARCHIVELOG NOPRINT;
    SELECT MAX(SEQUENCE#)-1  FARCH FROM V$LOG;
    PROMPT *************************************************
    SET SERVEROUTPUT ON SIZE 200000
    SPOOL &DEST_DIR.&DIR_SEP.part1.sql
    DECLARE
         -- Curseur pour recuperer la liste des datafiles
         CURSOR cDatafiles IS SELECT TABLESPACE_NAME, FILE_NAME FROM DBA_DATA_FILES ORDER BY TABLESPACE_NAME;
         REP_BACKUP     VARCHAR2(500 CHAR) := '';     -- Définition du répertoire principal de destination de sauvegarde
         OTN                         VARCHAR2(50 CHAR) := ' ';                                             -- Variable en aiguillde trainante pour le declanchement du mode backup
         PFILE_INFO     VARCHAR2(500 CHAR) := '';                                             -- Variable pour test de type de fichier d'initialisation
    BEGIN
         -- Validation du repertoire de destination
         SELECT INSTANCE_NAME INTO REP_BACKUP FROM V$INSTANCE;
         REP_BACKUP := '&DEST_DIR.&DIR_SEP'||REP_BACKUP||'&DIR_SEP'||TO_CHAR(SYSDATE,'YYYYMMDD')||'&DIR_SEP';
         DBMS_OUTPUT.PUT_LINE('&SH mkdir ' || REP_BACKUP);
         DBMS_OUTPUT.PUT_LINE('--');
         -- Traitement des DATAFILEs
         FOR vDatafiles IN cDatafiles
         LOOP
              -- Si le tablespace parcourru n'est pas le meme que le precedent
              IF (OTN != vDatafiles.TABLESPACE_NAME) THEN
                   -- Si ce n'est pas le premier alors on bascule l'ancien hors du mode backup
                   IF (OTN != ' ') THEN
                        DBMS_OUTPUT.PUT_LINE('ALTER TABLESPACE ' || OTN || ' END BACKUP;');
                   END IF;
                   -- Mise a jour de l'aiguillde trainante et mise en mode backup du tablespace
                   OTN := vDatafiles.TABLESPACE_NAME;
                   DBMS_OUTPUT.PUT_LINE('ALTER TABLESPACE ' || OTN || ' BEGIN BACKUP;');
              END IF;
              -- Il faut sauvegarder les fichiers!
              DBMS_OUTPUT.PUT_LINE('&SH &COPIE ' || vDatafiles.FILE_NAME || ' ' || REP_BACKUP);
         END LOOP;
         -- Evite un effet de bord: sortir le dernier tablespace du mode backup*
         DBMS_OUTPUT.PUT_LINE('ALTER TABLESPACE ' || OTN || ' END BACKUP;');
         DBMS_OUTPUT.PUT_LINE('--');
         -- Sauvegarde du fichier de controle sous forme controlfile et trace
         DBMS_OUTPUT.PUT_LINE('ALTER DATABASE BACKUP CONTROLFILE TO ''' || REP_BACKUP || 'control.ctl'';');
         DBMS_OUTPUT.PUT_LINE('ALTER DATABASE BACKUP CONTROLFILE TO TRACE AS ''' || REP_BACKUP || 'trace.ctl'';');
         DBMS_OUTPUT.PUT_LINE('--');
         -- Vérification du type de fichier d'initialisation
         SELECT VALUE INTO PFILE_INFO FROM V$PARAMETER WHERE NAME='ifile';
         IF (PFILE_INFO IS NULL) THEN
              -- A priori on utilise un fichier de type SPFILE ou le PFILE standard
              SELECT VALUE INTO PFILE_INFO FROM V$PARAMETER WHERE NAME='spfile';
              IF (PFILE_INFO IS NULL) THEN
                   -- On utilise le pfile standard     
                   -- Donc on créée temporairement un spfile pour en faire une sauvegarde)
                   DBMS_OUTPUT.PUT_LINE('CREATE SPFILE=''' || REP_BACKUP || 'spfile.ora'' FROM PFILE;');
                   DBMS_OUTPUT.PUT_LINE('CREATE PFILE=''' || REP_BACKUP || 'pfile.ora'' FROM SPFILE=''' || REP_BACKUP || 'spfile.ora'';');
                   DBMS_OUTPUT.PUT_LINE('&SH &SUPPR ' || REP_BACKUP || 'spfile.ora');
              ELSE
                   -- On utilise un spfile
                   -- Donc on le sauvegarde simplement
                   DBMS_OUTPUT.PUT_LINE('CREATE PFILE=''' || REP_BACKUP || 'pfile.ora'' FROM SPFILE;');
              END IF;
         ELSE
              -- on utilise un pfile specifique
              DBMS_OUTPUT.PUT_LINE('&SH &COPIE ' || PFILE_INFO || ' ' || REP_BACKUP);
         END IF;
         DBMS_OUTPUT.PUT_LINE('--');
    END;
    SPOOL OFF
    @&DEST_DIR.&DIR_SEP.part1.sql
    PROMPT *** Exec part 1
    SPOOL &DEST_DIR.&DIR_SEP.part2.sql
    DECLARE
         -- urseur de parcours de la liste des archivelogs
         CURSOR cListearchive(pLow NUMBER, pHigh NUMBER) IS  SELECT NAME,SEQUENCE#
         FROM V$ARCHIVED_LOG
         WHERE SEQUENCE# BETWEEN pLow AND pHigh
         AND DEST_ID IN
         (SELECT DEST_ID
         FROM V$ARCHIVE_DEST
          WHERE DESTINATION IS NOT NULL
          AND UPPER(DEST_NAME) IN
                    (SELECT UPPER(NAME)
                     FROM V$PARAMETER
                     WHERE VALUE IS NOT NULL
                     AND NAME LIKE '%log_archive_dest_%'
                    AND UPPER(SUBSTR(VALUE,1,8))='LOCATION'
         ORDER BY SEQUENCE#;
         LAST_ARCHIVELOG          NUMBER := 0;
    -- Variables de bornage des archives a sauvegarder
         FIRST_ARCHIVELOG     NUMBER := &FIRST_ARCHIVELOG;
         CURR_ARCHIVELOG          NUMBER := 0;
         REP_BACKUP     VARCHAR2(500 CHAR) := '';
    -- Définition du répertoire principal de destination de sauvegarde
    BEGIN
         -- Validation du repertoire de destination
         SELECT INSTANCE_NAME INTO REP_BACKUP FROM V$INSTANCE;
         REP_BACKUP := '&DEST_DIR.&DIR_SEP'||REP_BACKUP||'&DIR_SEP'||TO_CHAR(SYSDATE,'YYYYMMDD')||'&DIR_SEP';
         -- Marge de travail sur les fichiers archivelogs
         EXECUTE IMMEDIATE 'ALTER SYSTEM SWITCH LOGFILE';
         -- On va savegarder les &MARGE_ARCHIVELOGS derniers archivelogs.
         SELECT MAX(SEQUENCE#)-1 INTO LAST_ARCHIVELOG FROM V$LOG;
         FIRST_ARCHIVELOG := FIRST_ARCHIVELOG - &MARGE_ARCHIVELOGS;
         DBMS_OUTPUT.PUT_LINE('-- tranche: ' || FIRST_ARCHIVELOG || ' a ' || LAST_ARCHIVELOG);
         -- Parcours de la liste des elements archives concernes
         FOR vListearchive IN cListearchive(FIRST_ARCHIVELOG,LAST_ARCHIVELOG)
         LOOP
              -- Traite t'on une nouvelle archive?
              IF (CURR_ARCHIVELOG != vListearchive.SEQUENCE#) THEN
                   DBMS_OUTPUT.PUT_LINE('&SH &COPIE  ' || vListearchive.NAME || ' ' || REP_BACKUP);
                   CURR_ARCHIVELOG := vListearchive.SEQUENCE#;
              END IF;
              -- si non il n'y a rien à faire.
         END LOOP;
    END;
    SPOOL OFF
    PROMPT *** Exec part 2
    @&DEST_DIR.&DIR_SEP.part2.sql
    PROMPT *************************************************But it's provided without guarantee. It's been a long time i've not used it! And it might have bugs. Up to you to test it, backup is not a matter where you trust people :-)
    Of course, you could also use a simple RMAN script, depending on what you are trying to achieve exactly:
    RUN
      allocate channel c01 type disk format 'c:\backup\%d%U';
      backup database;
      backup archivelog all delete input;
    }This is just a sample. And you need to choose how you'll use RMAN.
    Yoann.
    Edited to clean up the code from unnecessary blank lines...
    Message was edited by:
    Yoann Mainguy

  • N97 Photo Gallery Bug

    Hey all. I've found yet another issue with the N97's software, and I'm looking to see if anybody else has had this come up with theirs as well, if anybody has their N97 anymore. 
    It seems that for some stupid reason, whether it be from constantly connecting to my computer via USB Mass Memory mode, the photo's that I have taken with the N97 camera stopped showing up in the "Captured" list of photos. I used to have 100+ in that list. Then I had 35, and now I only have 15. All the rest of them are showing up in the "Downloads" photo list.
    This of course is in addition to all the other shennanigans that I have to deal with in terms of the photo gallery in general. You know, how photo's don't show up clearly when zoomed in on, or how you'll get kicked out to the homescreen while trying to zoom in sometimes or how the phone will fake like you're going to the homescreen all of a sudden and then bam, it's back to showing you your zoomed into photo.
    Just wanted to see if anybody else was experiencing the captured photo's bug.

    I FOUND A GOOD SOLUTION BY USING THE NEW VERSION OF NOKIA PHOTO BROWSER ! IT WORKS GREAT AND BETTER THAN THE INCLUDED ONE WHICH HAVING SOME BUGS AND RESLUTION PROBLEMS !

  • Problem calling Oracle10g stored procedure (bug?)

    Hello everybody, I am trying to call a stored procedure Oracle on Oracle 10g XE from Java.
    I can succesfully execute query from Java, so I can say that driver, connection, ... are all right.
    I have the following error when I try to call a stored procedure or a function.
    I think that it is a bug of the file OraClient10.Dll, so, in general, a bug that don't depends from my code. So I install the most recent version of JDK/JRE, and I download again file OraClient10.Dll but result was the same.
    Please help me!
    Thank you
    Ulix
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x61d37460, pid=3872, tid=1224
    # JRE version: 6.0_16-b01
    # Java VM: Java HotSpot(TM) Client VM (14.2-b01 mixed mode windows-x86 )
    # Problematic frame:
    # C [OraClient10.Dll+0x117460]
    # An error report file with more information is saved as:
    # If you would like to submit a bug report, please visit:
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    #

    Why not just connect via the thin mode of the driver, not the oci mode?
    You'll get all the functionality and none of the native code bug risk.

  • N97 Nokia Messaging bug

    I'm using Nokia Messaging on the N97. I've noticed a bug. When I choose the menu which lets you switch between different email accoutns, pressing the screen brings up the menu as you would expect, however pressing the screen again to select a particular email account does not work.
    Instead I have to open the keyboard and use the D-pad instead.
    Solved!
    Go to Solution.

    Hi Davis,
    I know it will be hard for you to reply but I would like to bring in your notice about Memory issue on N97. You mentioned in your post that by default it takes 2 KB for each message. When I install it on my N97 , I have 49 MB left. It was 51 before. After that It started snycronisation and memory was dropped to 41 MB after that.
    My question if your statement is correct, it cannot ideally never eat so much memory. I am forced to use MFE for mail as i can limit the days to three and i think that stores the mails on Mass memory.
    Now question is,
    Would it be possible to use Nokia Messaging for us ?? Do you think wtih 10 MB used by Nokia Messaging on N97 is affordable while N97 is already a victim of Nokia negligence regarding hardware part.
    Regards
    Zeeshan

  • N97 Backup and missing messages - best memory loca...

    Backed up my data (like a good little boy) via PC Suite last night awaiting the upgrade (currently V 10.0.012) and found all my messages and emails gone. Found the solution to this (from sidtrip) in the "blackhole" N97 bugs post. It appears the update can reset where your messages are stored, and the update had reverted this to the phone memory. I had moved the message to the mass memory as I'd had messages that the phone memory was full (although I could never find what constituted this - file manager showed very little in there).
    Question is, where's the best place to hold messages; phone or mass memory?
    Presumably Nokia think the phone because that's the default, so a second question would be, how do you solve the weirdness of a reportedly full (but not really) phone memory?
    Cheers,
    "ROZ"
    N97 on GiffGaff
    Started to grind to a halt until I hard reset it - still a lot slowly than my wife's iP4

    Supplementary question; how can you move messages from one memory to the other. I've now got some split across both phone and mass?
    Cheers,
    "ROZ"
    N97 on GiffGaff
    Started to grind to a halt until I hard reset it - still a lot slowly than my wife's iP4

  • Backup procedure using RMAN for 11i Instance

    Hi,
    we have 11.5.10.2 instance
    Node 1 = Application Tier ( 11.5.10.2)
    Node 2 = DB Tier ( 9.2.0.7)
    as of now, we are taking daily cold backup of both instances.
    we want to implement RMAN online backup for DB and take cold backup every week end only.
    so, what are the best procedures for implementing RMAN for 11i Database.
    Please share your experience, if you have anybody implemented?
    which one you prefer in RMAN backup ( backupsets or copy option or backupsets with compressed option) interms of performance.. our db size is 60 GB only.
    we apply apps tier patches very rarely . so we want to take RMAN online backup for DB daily and take cold backup for entire apps and db in the week ends.

    Hi,
    This time, i am going to implement for Oracle 11i Database. thats why, i need you guys advice regarding 11i Database.Well, the same is applicable to 11i/R12 databases. You just need to configure RMAN the same way you configure it on any standalone database.
    If you have implemented any where RMAN, can you share, how you are taking RMAN backup? I can share the scripts we use for backup using RMAN. If you are interested, let me know and I shall send it by email.
    if we want to clone, are you cloning the TEST instance with RMAN backup or using cold backup.We use both, depends on the time frame of the cloning task and whether it is possible to use cold backup for cloning or not.
    Please have a look at the following notes, it should be helpful.
    Note: 230672.1 - Cloning Oracle Applications Release 11i with Rapid Clone
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230672.1
    Note: 760772.1 - Cloning Oracle Application 11i /R12 with Rapid Clone - Database (9i/10g/11g) Using Hot Backup on Open Database
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=760772.1
    Note: 362473.1 - Cloning E-Business Suite Using Hot Backup for Minimal Downtime of Source Environment
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=362473.1
    Regards,
    Hussein

  • RAC backup procedure failover

    We have Oracle 11gR2 RAC database on two nodes. We also have a RMAN backup script that works fine, using a recovery catalog database which is located in a town 20km from the data center. The script for database backup works fine, and is started from crontab Job or from Oracle dbconsole (for now it works from crontab). A recovery procedure is checked and everything is working properly.
    The problem is that the script runs from the first node in the cluster, and if the node is turned off, backup can't be run. How can we ensure that our script have a failover backup version. We also tried to do the backup over dbconsole but this only works if the node from which to start job was started.
    Essentially the question is "How to ensure that our backup works, whether or not both nodes are active"

    Hi,
    SerPedjasim wrote:
    We have Oracle 11gR2 RAC database on two nodes. We also have a RMAN backup script that works fine, using a recovery catalog database which is located in a town 20km from the data center. The script for database backup works fine, and is started from crontab Job or from Oracle dbconsole (for now it works from crontab). A recovery procedure is checked and everything is working properly.
    The problem is that the script runs from the first node in the cluster, and if the node is turned off, backup can't be run. How can we ensure that our script have a failover backup version. We also tried to do the backup over dbconsole but this only works if the node from which to start job was started.
    Essentially the question is "How to ensure that our backup works, whether or not both nodes are active"Don't use nodes of clusterware to start backup. You can use the host of recovery catalog database which is located in a town 20km.
    Move all scripts of rman to host of recovery catalog and configure the scripts in crontab of host of recovery catalog. The RMAN works as client only the backup is always performed on server side.
    Create a Service on RAC to RMAN connect (e.g RMAN_BACKUP). The service should run on nodes 1 of the RAC, but is able to run on node 2 or 3 if nodes 1 are not available. (If you use the default service name of RAC (name of database) and you are using parallelism the RMAN can start a session in each node and the backup be perfomed by all nodes at same time, this is not a problem, but you can have perfomance problems on your environment). Because that I recommend create a Service.
    http://download.oracle.com/docs/cd/E11882_01/rac.112/e16795/hafeats.htm
    Configure a net service name using the local naming method on host of recovery catalog.
    If you are using SCAN Feature do this above, if not put all VIP hostnames on Address.
    e.g:
    RMAN_BACKUP =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = node-scan.oracle.com)(PORT = 1521))
         (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = RMAN_BACKUP)
      )Regardless of the node that is active your backup will be started if a node is active
    This will only work if you are performing online backup. I hope so.
    Hope this helps,
    Levi Pereira
    Edited by: Levi Pereira on Aug 22, 2011 11:27 PM

  • Suggest me sutable BACKUP procedure

    Hai Friends,
    I hope all r doing well.
    Ours is small co., here I hv to take the backup daily and Weekly.
    Configaration:
    Ecc6.0, DB6, AIX 5.3
    One DEV, One PRD no QAS system,no separate data base system.
    1.ALL Production data backup to Tape.
    2.All DEV data backup to CD or Hard disk.
    3.How 2 schedule backup in DB13.
    We do not using any 3rd party tool for backup.So friends plz respond me.
    Plz send the best and easyest procedure for taking backup for above mentioned configaration.
    Regards
    Jagan

    Hi,
    use this command at the database level :-
    db2 backup db < DBSID > to < a directroy or device or a tape >
    Even you can do this using control center.
    Rgds
    Radhakrishna D S

  • Business One Backup Procedure

    Does anyone have or know where I can find a procedure for backing up my database via the Service Manager.   I am unsure exactly how to set this up and need to get it working properly.   Any help would be great.

    Hi Joe............
    You can manage the SAP DB Backups from Service Manager.
    Go to Start> Programs> SAP Business One> Server tools> Select SBO Backup in drop down and click on Schedule button where set the scedule of Autobackup.
    Then Setting Button and Set the Location where to be backed up.
    Then connection give SQL server details
    Then Click on Batabase and select Db for which Back up is to be set and Then press Start buton...
    This will take Back up of selected DB on specified Time in specifed Location........
    Hope this will help you.......
    Regards,
    Rahul

Maybe you are looking for