Recovering MaxDB instance after file corruption

Hello,
How can I recover MaxDB database from backup when one of datafiles was corrupted? I could drop this broken database, create new one and recover it. But is there any way to recover db without dropping it?
And one more thing I would like to understand.
AFAIK database instance consists of two major "parts". datafiles/logfiles and small set of files placed in sapdb/wrk directory (in case of standard SAP installation). What kind of information are kept in these files? What about definition of database users and DBM operators?
If I drop SAP database, create new one with the same name and users/DBM operators and recover data form backup, will this database be the same as "original" one? What are possible differences between these two databases?
Thank you for any help with solving my problems.
regards,
Konrad

Hi Markus,
Thanks for answer.
The problem is I cannot bring database in admin mode. I cannot even start problem service (server is Windows based):
Here's my knldiag:
2007-11-08 15:11:59                               --- Starting GMT 2007-11-08 15:11:59           7.5.0    Build 032-123-111-699
2007-11-08 15:12:12      0xB60 ERR 18159 VOLUMEIO Could not open volume 'd:sapdbTH4dataDISKD0001', rc = 2
2007-11-08 15:12:12      0xA24 ERR 20014 IOMan    Attach error on data volume 1: could not open volume
2007-11-08 15:12:12      0xA24 ERR 20017 Admin    RestartFilesystem failed with 'I/O error'
2007-11-08 15:12:12      0xA24 ERR 20010 Admin    ERROR 'disk_not_accessibl' CAUSED EMERGENCY SHUTDOWN
2007-11-08 15:12:13                               ___ Stopping GMT 2007-11-08 15:12:13           7.5.0    Build 032-123-111-699

Similar Messages

  • Recovering data when log files corrupt

    I am interested to understand if you can easily salvage the data files if the log files corrupt for some reason. Thus far I cannot see how this can be easilly achieved as db_backup requires a working environment, and since the log files may have vanished, the LSN of the data files will be greater than of the last log - and therefore refuse to create the environment.
    Ideally I guess, I am looking for a tool that can reset the LSN in place. It would be better to have access to your 100's of GB of data and accept a small amount of inconsistency or data loss than have nothing.
    Thanks

    Hi,
    Resetting LSNs can be done using db_load -r lsn or using the lsn_reset() method, and it is done in place.
    If your log files are corrupted, you would need to verify the database files (you can use the db_verify BDB utility or the verify() method). The actions you will further take depend on the result of verifying the database files:
    - if they verify correctly then you just need to reset the LSNs and the file IDs in the databases and start with a fresh environment,
    - if they do not verify correctly, you could restore the data from the most recent backup, or you can perform a salvage dump of the data in the database files using db_dump -r or db_dump -R and than reload the data using db_load; see the Dumping and Reloading Databases doc section in the Berkeley DB Programmer's Reference Guide.
    Regards,
    Andrei

  • Recover from currnet log file corruption in archive mode

    Hi,
    I am using oracle 10.2.0 on windows xp. my database is in archivelog mode. I am learning recovery. I take backup of database using
    RMAN> backup database;
    Starting backup at 03-SEP-09
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00004 name=D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
    input datafile fno=00001 name=D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
    input datafile fno=00003 name=D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
    input datafile fno=00002 name=D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
    channel ORA_DISK_1: starting piece 1 at 03-SEP-09which completed.
    my current logfile and current sequence no is
    SQL> select * from v$log;
        GROUP#    THREAD#  SEQUENCE#      BYTES    MEMBERS ARC STATUS
    FIRST_CHANGE# FIRST_TIM
             1          1         88   52428800          1 NO  CURRENT
          4475270 01-SEP-09
             2          1         86   52428800          1 YES INACTIVE
          4426127 31-AUG-09
             3          1         87   52428800          1 YES INACTIVEThen i delete my only one redolog file in my current group. my instance crashes i want to recover now first i try
    SQL> startup
    ORACLE instance started.
    Total System Global Area  289406976 bytes
    Fixed Size                  1248576 bytes
    Variable Size              92275392 bytes
    Database Buffers          188743680 bytes
    Redo Buffers                7139328 bytes
    Database mounted.
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1:
    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    SQL> select open_mode from v$database;
    OPEN_MODE
    MOUNTED
    SQL> recover database until cancel;
    ORA-00279: change 4500421 generated at 09/03/2009 10:49:48 needed for thread 1
    ORA-00289: suggestion : D:\1\ARC00088_0693601900.001
    ORA-00280: change 4500421 for thread 1 is in sequence #88
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    cancel
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF'
    ORA-01112: media recovery not startedit doesn't work then i do
    RMAN> restore database
    2> ;
    Starting restore at 03-SEP-09
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 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 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
    restoring datafile 00002 to D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
    restoring datafile 00003 to D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
    restoring datafile 00004 to D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
    channel ORA_DISK_1: reading from backup piece D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03
    KP
    channel ORA_DISK_1: restored backup piece 1
    piece handle=D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03\O1_MF_NNNDF_TAG20090903T104947_5
    channel ORA_DISK_1: restore complete, elapsed time: 00:02:16
    Finished restore at 03-SEP-09
    RMAN>
    RMAN> recover database until sequence 87;
    Starting recover at 03-SEP-09
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 09/03/2009 11:06:06
    RMAN-06556: datafile 1 must be restored from backup older than scn 4444743It means i need an older backup but i have new backup how to restore or get my database up.
    Thanks
    umesh

    Thanks for reply
    i have this in my hand
    RMAN> list backupset;
    List of Backup Sets
    ===================
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    1       Full    1.38G      DISK        00:02:21     03-SEP-09
            BP Key: 1   Status: AVAILABLE  Compressed: NO  Tag: TAG20090903T104947
            Piece Name: D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03\O1_MF_NNNDF_TAG20090903T104947_59YNHNSK_.BKP
      List of Datafiles in backup set 1
      File LV Type Ckp SCN    Ckp Time  Name
      1       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
      2       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
      3       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
      4       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    2       Full    6.80M      DISK        00:00:03     03-SEP-09
            BP Key: 2   Status: AVAILABLE  Compressed: NO  Tag: TAG20090903T104947
            Piece Name: D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03\O1_MF_NCSNF_TAG20090903T104947_59YNN8J9_.BKP
      Control File Included: Ckp SCN: 4500486      Ckp time: 03-SEP-09
      SPFILE Included: Modification time: 03-SEP-09
    RMAN> restore database preview;
    Starting restore at 03-SEP-09
    using channel ORA_DISK_1
    List of Backup Sets
    ===================
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    1       Full    1.38G      DISK        00:02:21     03-SEP-09
            BP Key: 1   Status: AVAILABLE  Compressed: NO  Tag: TAG20090903T104947
            Piece Name: D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03\O1_MF_NNNDF_TAG20090903T104947_59YNHNSK_.BKP
      List of Datafiles in backup set 1
      File LV Type Ckp SCN    Ckp Time  Name
      1       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
      2       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
      3       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
      4       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
    archive logs generated after SCN 4500421 not found in repository
    Media recovery start SCN is 4500421
    Recovery must be done beyond SCN 4500421 to clear data files fuzziness
    Finished restore at 03-SEP-09
    RMAN> backup archivelog all ;
    Starting backup at 03-SEP-09
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=60 recid=3 stamp=694522772
    input archive log thread=1 sequence=61 recid=4 stamp=694543115
    input archive log thread=1 sequence=62 recid=5 stamp=694693173
    input archive log thread=1 sequence=63 recid=6 stamp=694707783
    input archive log thread=1 sequence=64 recid=7 stamp=694785054
    input archive log thread=1 sequence=65 recid=8 stamp=694787797
    input archive log thread=1 sequence=66 recid=9 stamp=694794198
    input archive log thread=1 sequence=67 recid=10 stamp=694799765
    input archive log thread=1 sequence=68 recid=11 stamp=694806827
    input archive log thread=1 sequence=69 recid=12 stamp=694809124
    input archive log thread=1 sequence=70 recid=13 stamp=694868744
    input archive log thread=1 sequence=71 recid=14 stamp=695132728
    input archive log thread=1 sequence=72 recid=15 stamp=695210729
    input archive log thread=1 sequence=73 recid=16 stamp=695330401
    input archive log thread=1 sequence=74 recid=17 stamp=695399695
    input archive log thread=1 sequence=75 recid=18 stamp=695412690
    input archive log thread=1 sequence=76 recid=19 stamp=695511043
    input archive log thread=1 sequence=77 recid=20 stamp=695557945
    input archive log thread=1 sequence=78 recid=21 stamp=695597432
    input archive log thread=1 sequence=79 recid=22 stamp=695728451
    input archive log thread=1 sequence=80 recid=23 stamp=695729334
    input archive log thread=1 sequence=81 recid=24 stamp=695729976
    input archive log thread=1 sequence=82 recid=25 stamp=695835471
    input archive log thread=1 sequence=83 recid=26 stamp=695988878
    input archive log thread=1 sequence=84 recid=27 stamp=696160938
    input archive log thread=1 sequence=85 recid=28 stamp=696333853
    input archive log thread=1 sequence=86 recid=29 stamp=696360658
    input archive log thread=1 sequence=87 recid=30 stamp=696454218
    channel ORA_DISK_1: starting piece 1 at 03-SEP-09
    channel ORA_DISK_1: finished piece 1 at 03-SEP-09
    piece handle=D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03\O1_MF_ANNNN_TAG20090903T115246_59YR5VRV_.BKP tag=TAG20090903T1
    =NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:01:08
    Finished backup at 03-SEP-09
    RMAN> restore database preview;
    Starting restore at 03-SEP-09
    using channel ORA_DISK_1
    List of Backup Sets
    ===================
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    1       Full    1.38G      DISK        00:02:21     03-SEP-09
            BP Key: 1   Status: AVAILABLE  Compressed: NO  Tag: TAG20090903T104947
            Piece Name: D:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2009_09_03\O1_MF_NNNDF_TAG20090903T104947_59YNHNSK_.BKP
      List of Datafiles in backup set 1
      File LV Type Ckp SCN    Ckp Time  Name
      1       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF
      2       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF
      3       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF
      4       Full 4500421    03-SEP-09 D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF
    archive logs generated after SCN 4500421 not found in repository
    Media recovery start SCN is 4500421
    Recovery must be done beyond SCN 4500421 to clear data files fuzziness
    Finished restore at 03-SEP-09now i have two backup one is full database backup which will not work another is backup of all archivelog upto sequence 87 i think it should work.
    but rman is choosing full database backup for restore.
    so i need to force rman to choose archivelog backups for restore but don't know how to do it. please suggest.
    Thanks
    umesh

  • Tried to download and reinstall iTunes after file corrupted. Download proceeds, but does not complete. Message states "Apple mobile device failed to start. Verify that you have sufficient privileges to start system services."

    My iTunes became corrupted. I tried to upgrade to a new version, but things only got worse. Some of the error messages I received:
    APSDaemon - Unable to locate component
    This application has failed to start because MSVCR80.dl was not found. Rinstalling the application may fix this problem.
    So, I deleted my downloads and past attempts and any .dl files I had and tried again. Now I get this message:
    Today:  Apple Mobile Device failed to start. Make sure you have sufficient privileges to start system services.

    Hi ahhan13,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Cheers,
    - Judy

  • Error message when starting MaxDB instance

    I am getting the following Error message when starting the MaxDB instance after a series of failed attempts at starting the DB Manager Backup for our PI 7.1 server.
    "-24994,ERR_RTE: Runtime environment error
    1,Cannot create ipc db directories for SID (OS error code 11000)"
    Max DB version : 7.7.02
    Does anyone have any specific pointers on where the issue could be.
    Any help is greatly appreciated.
    Regards,
    Murali Narayanan

    Hi gurus,
    I'm a complete newbye searching the forums in order to decrypt what is inconsistent to me (I'm acting as a substitute for a real dba): a sapdb refusing any more connection due to an 'user space exhausted' issue.
    I do not even know if/where some admin tool is/isn't installed - eventually, what to look for - onto the running demianapachetomcat framework. Actually, all I have been provided was: 1. call 'Henplus' (done); 2. connect this way (jdbc:sapdb://localhost/database&options) and 3. select, upgrade, delete what needed. Problem arises on point (2): connection resufed 'user space exhausted'.
    My question is: this issue seems so similar to mine, how can one eventually check/modify this '/sapdb directory space'?
    Thanks in advance for any (much appreciated) hint, and be patient about my English and newbyeness (?).
    MaxM

  • Recover OCR and VOTE disk after complete corruption of ASM disk groups.

    Hi Gurus,
    I am simulating a recovery situation to perform recover of OCR and Vote files after complete corruption of ASM related disks and diskgroups. I have setup my environment as follows:\
    Environment: RAC
    OS: OEL 5.5 32-bit
    GI Version: 11.2.0.2.0
    ASM Disk groups: +OCR, +DATA
    OCR, Vote Files location: +OCR
    ASM Redundancy: External
    ASM Disks: /dev/asm-disk1, /dev/asm-disk2
    /dev/asm-disk1 - mapped on +OCR
    /dev/asm-disk2 - mapped on +DATA
    With the above configuration in place I have manually corrupted +OCR, +DATA diskgroups with dd command. I used this command to completely corrupt +OCR disk group.
    dd if=/dev/zero of=/dev/asm-disk1. I have manual backups as well as automatic backups of OCR and Vote disk. I am not using ASMLib.
    I followed this link:
    http://docs.oracle.com/cd/E11882_01/rac.112/e17264/adminoc.htm#TDPRC237
    When I tried to recover OCR file, I could not do so as there is no such diskgroup which ASM can restore the OCR, Voting disk to. I could not Re-create OCR and DATA diskgroups as I cannot connect to ASM instance. If you have a solution or workaround for my situation please describe it. That will be greatly appreciated.
    Thanks and Regards,
    Suresh.

    Please go through the following document which have the detailed steps to restore the OCR
    How to restore ASM based OCR after complete loss of the CRS diskgroup on Linux/Unix systems [ID 1062983.1]

  • Maxdb parameter file corrupt

    Hello Experts,
    The file system /sapdb/data was 100% full some time ago, and since then we cannot start one of the database instances anymore.
    When trying to start the instance it returns:
    dbmcli -U c_J2EE db_start
    ERR -11608 COMMUNIC sql03_request: wrong connection state, state is 'requested'
    Error! Connection failed to node sapwd2 for database WD2:
    connection broken
    In the file /sapdb/data/wrk/dbmsrv_nlbsf02.prt I find the following lines at the time of error:
    2009-02-18 14:04:00 0x00002a05 INF          1 DBMSrvCo A DBM Server client connection was established at 2009-02-18 14:03:59 (client process has process ID 10755 on computer sapwd2.bsf.bouwstenenfabriek.nl).
    2009-02-18 14:04:00 0x00002a05 ERR     -24700 DBMSrv   ERR_DBMSRV_NOSTART: Could not start DBM server.
                        0x00002a05 ERR     -24840 DBMSrv   ERR_NODBMLOGGER: DBM logger could not be initialized
                        0x00002a05 ERR     -24994 DBMSrv   ERR_RTE: Runtime environment error
                        0x00002a05 ERR      20062 RTE      RTE error checksum does not match, parameter file may be corrupt
                        0x00002a05 ERR     -24994 DBMSrv   ERR_RTE: Runtime environment error
                        0x00002a05 ERR      20062 RTE      RTE error checksum does not match, parameter file may be corrupt
    2009-02-18 14:04:00 0x00002a05 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 10755 on computer sapwd2.bsf.bouwstenenfabriek.nl).
    However, there is no indication which parameter file is corrupt. There is nothing written in directory /sapdb/data/wrk/WD2 when I try to start, so the KnlMsg file does not change either.
    My question is for which parameter file is the checksum not correct? Is there a way to fix this parameter file?
    I have searched google and SDN but not found anything usefull so far.
    Rob Veenman
    SAP Basis

    > However, there is no indication which parameter file is corrupt. There is nothing written in directory /sapdb/data/wrk/WD2 when I try to start, so the KnlMsg file does not change either.
    >
    > My question is for which parameter file is the checksum not correct? Is there a way to fix this parameter file?
    > I have searched google and SDN but not found anything usefull so far.
    >
    Hi Rob,
    there is just one parameter file for each MaxDB instance - the currently active one.
    It's the file /sapdb/data/config/<SID>.
    As your current file seems to be damaged, you may rename it and run a
    param_restore 1
    to get the last backed up version of it back.
    ATTENTION : If you modified the volume configuration before the file got corrupt and no backup version of the parameter file had been created since than,  restoring the old version will make your database unstartable.
    The missing volume configuration parameters would then need to bee added manually again.
    regards,
    Lars

  • Etc/system file corrupted how to recover it?

    etc/system file corrupted how to recover it?

    with boot -a you can only specify new /etc/system during boot , e.g. /dev/null
    but if you want to recover it , you can do it from live kernel ( if you didn't reboot after /etc/system was corrupted )
    with
    echo ::system|mdb -k
    or from previous crash dump simmilar way
    cd /var/crash/`uname -n`
    cho ::system|mdb unix.[x] vmcore.[y]

  • One control file corrupted, how to recover?

    The first control file get corrupted, and the db can't start up. The second and third are ok. How can I recover the first control file and bring the db up?
    Thanks

    but still not up:
    SQL> startup
    ORACLE instance started.
    Total System Global Area 830472192 bytes
    Fixed Size 2032520 bytes
    Variable Size 746593400 bytes
    Database Buffers 75497472 bytes
    Redo Buffers 6348800 bytes
    Database mounted.
    ORA-03113: end-of-file on communication channel
    from alert:
    Errors in file /opt/oracle/admin/pacedev5/bdump/pacedev5_lgwr_14488.trc:
    ORA-19502: write error on file "/opt/oracle/u01/pacedev5/control01.ctl", blockno 297 (blocksize=16384)
    ORA-27063: number of bytes read/written is incorrect
    Additional information: 24576
    Additional information: 196608
    LGWR: terminating instance due to error 19502
    Instance terminated by LGWR, pid = 14488
    dbv the control file and see the corrupted blocks
    something else could be wrong?
    thanks

  • Files corrupted in zone after box reset

    Hi
    We have a system where we somtimes have file corruption in a zone.
    We are running
    Solaris 10 6/06
    Solaris Volumemanagement RAID-1/Mirror on two SCSI disksWe have not yet been able to reproduce it.
    Does anyone have any idea of what it might be or have ideas of how to reproduce it?
    Have a nice day
    Henry

    We have a similar configuration with RAID1/mirror and occationally see the same file being corrupted after a box reset. Haven't been able to reproduce it. I know it is not of much help, but always nice to know that you are not alone.

  • Does anyone know to to recover itunes back up file after its deleted

    does anyone know to to recover itunes back up file after its deleted?

    rmdlk wrote:
    does anyone know to to recover itunes back up file after its deleted?
    What is "itunes back up file"?

  • Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Hello, I have downloaded os x mavericks, but download failed many times and file corrupted. Now i'm trying to download again but in app store its showing as downloaded and after hiding the purchase there is no unhide or re-download option. Plz help me.

    Hello, I have downloaded os x mavericks, but download failed many times and file corrupted. Now i'm trying to download it again but in app store its showing as downloaded and after hiding the purchase there is no unhide or re-download option. Plz help me. Thanking you in advance.

    If it is hidden, follow the steps in this KBase
    http://support.apple.com/kb/HT4928
    If you have it in the Applications folder, trash it before attempting a new download.

  • More jpg file corruption

    I've had another jpg file corrupted in the same manner as before and this time the file hasn't been touched recently by anything but LR. My second copy was also corrupt because I "back up" too often. Fortunately, it's easy for me to get files back from my internet backup, which is written only once. To get to my CDs or DVDs would require digging in a closet.
    To me this brings a lot of issues to the fore with jpg handling, both what I do with them and what LR does with them. First, if you are going to rewrite files frequently (I only write metadata on demand, not automatically) then you have to know how to do it safely! On my side, it may be stupid to write it out -- nope, not, because I have to in order to edit in PS and retain the metadata. I have almost innumerable LR backups and the metadata is in there. I have considerable experience now in plopping in an absolute original file and LR happily applies everything to it. Hum. I'm forgetting the PS edits which would not be backed up with this plan.
    The existence of 1 to 1 previews makes it very slow to SEE a problem in LR. I haven't used these files for months until the 9th when I started working on them. The first day or so it was grinding a lot, obviously making previews. So the good preview of this file had to be made on the 9th or a bit after so the file was OK at that time. In fact, everything looked fine until I decided to edit a copy of the file in PS. It stumbled and flickered the screen and then created a preview with only the top third or so of the file intact and the bottom part "faded." These appear to still be (almost) valid jpg file, but the content has been damaged.
    I have used jpg files for years and I don't remember a time when I've had jpg file corruption. I may have forgotten an instance, but it doesn't come to mind. I've had 3 or 4 them now with LR.
    These jpg files were created from scans and I have manipulated them to put the capture date, date digitized, and some global type information. I use exifer, a product that's been used for many years by many people (and not updated recently). If exifer is a problem, why only a handful of corruptions in thousands of files?
    It's difficult to have a sensible backup plan except to keep the originals somewhere really safe. Even with metadata writing turned off by default, these files churn. I cannot keep every version of jpg files. And keeping the old files for a short period does not help because bad files don't show up in LR under many circumstances because of the preview files.
    I don't know if this is relevant but I never had this happen with LR 1.0.
    This is very worrisome and I'm going to get grouchy soon! You guys with RAW are really lucky that LR doesn't write to your files! I'd now love to have an option of a sidecar file which I could write to the jpg only when I'm ready to and have a way to check that the resulting file is still intact.
    Of course I haven't proven there isn't an issue with my disk drive, but I've now proven it to myself that there's a very high probability that LR is corrupting jpg files when writing out metadata. I would like to hear if others using jpg files have had corruptions.

    Hi, I too also have just experienced jpg corruption. It was a jpg that had been taken several years ago and had not been edited at all. The bottom left hand corner had been transposed from the right hand side. The result of this was the whole bottom 1/5 of the picture was shifted to the right. Also the color of the shifted portion was slightly different from the rest. This is the first jpg corruption in Lightroom I have seen. My backup was the same but fortunately I had a copy on DVD. I am using Windows version of Lightroom 1.2, tried 1.3 and decided to go back to 1.2
    Does anyone know if this type of corruption only happens to jpg files. Would it be worthwhile marking them all read-only. I plan to check my other jpgs to see if there are any more corruptions. I mainly shoot RAW now and convert to DNG

  • Recovering Time Machine after backups were deleted

    The event I will describe occurred from an incomplete operation. Hindsight is 20/20. After the mistake, I stopped using the Time Machine drive.
    Fearing that my Time Machine drive (1 TB) was becoming full, I proceeded to delete some backups between the start date and the present. Thinking that on the dates I deleted nothing really changed, I thought it was safe.
    The dialog appeared, "Preparing to delete files..." and was still on the screen when I realized that any deletion was idiotic. The dialog never changed to indicate files were actually being deleted. After inspection, some files were deleted. There is only a small subset of backups remaining. As no data was ever written to the drive, I'm sure I can recover all or most files.
    What is the best path to recover as much backup data as possible? I own the Stellar Phoenix recovery program.
    What should I know about the structure of Time Machine archives? My latest attempts have resulted in almost no complete files but rather in hundreds of files named "iNode xxxxxxx" being recovered. I don't find that helpful at all. All changes can be reconstructed with work. All I care about are the original downloaded files. The diff files (I assume that is how TM works) are negligible.
    Thank you for helping this Macintosh and TM amateur.
    Robert

    Hi, and welcome to the forums.
    Unfortunately, Apple doesn't do a very good job of warning people: +*Never, ever, move, change, or delete anything in your TM backups via the Finder.+* That can hopelessly corrupt them.
    They do have special "deny everybody everything" permissions, but that isn't enough, as you've found out.
    Just for future reference, see #12 in the Frequently Asked Questions *User Tip* at the top of this forum.
    Time Machine uses some rather complex techniques, so it can perform only incremental backups of what's new or changed, but have each backup be, in effect, a full one. This is done with multiple "hard links" to the actual backup items, at both the file and directory level. Think of them as multiple aliases. Few 3rd-party apps understand this. So be sure your recovery program is fully compatible with Leopard.
    I think that +Data Rescue II+ is, but I've never used it, so can't be sure.
    Most likely, the best you'll be able to recover are some "raw" files.

Maybe you are looking for

  • How to combine multiple podcast folders into one

    When I open itunes Podcast section I find that it shows multiple folders or podcasts with the same name. I want these to show up as just one podcast. How can I do this? For example: When I look at my HD>itunes>Podcast folder; I see one folder called

  • How do I tell if a File is ANSI, unicode or UTF8?

    I have a jumble of file types - they should all be the same, but they are not. How do I tell which type a file has been saved in? (and how do I tell a file to save in a certain type?)

  • Pipeline Delimeter issue in SSIS flatfile.

    I have flat file with pipeline delimeter with 9 columns, each columns having diffrent data lenth. i am having issue with one on of the column Address. User enter the value with PIPELINE symbol in his address, so that my developed SSIS packages got me

  • Meta data in iweb

    Does anyone know if it is possible to insert meta data in a website created with iweb? I can't seem to find anything that discusses this topic.

  • SIGTRAN and Qos

    Hi all, I am new in QoS and trying to apply it in two of my voice links. I have a voice circuit (1xE1) between our office and HQ in USA and another voice circuit (3xE1) with another branch. I have only voice and signaling traffic on the USA circuit a