Corrupted innodb table crashing mysql instance how to recover table?

Hello,
Running a simple query against corrupted innodb table is crashing mysql instance .
table test.xyz got corrupt during crash and truncate table command was in progressing when mysql crash , now
running a simple select * query is also crashing db .
mysql> use test;
Database changed
mysql> select * from xyz;
ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql>
mysql>
mysql> select * from xzy;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
ERROR:
Can't connect to the server

Try to start mysql with innodb_force_recovery = 6
Or to try to restore by means of the tool:
MySql Recovery Toolbox and find out how you can use the corrupt MySQL recovery tool for damaged database restoration and easily repair known issues or already known problems, occurred in MySql files. This MySql repair utility offers many benefits
like:
Supports all MySql file versions and parses even very large documents on older PC computers;
Supports primary and external keys, tables, views, indexes and other objects;
Allows previewing recovered data in freeware mode so you can get results without purchasing MySql Recovery Toolbox
For more information: http://www.mysqlrecoverytoolbox.com/
As you can look for the answer here:
http://www.filerepairforum.com/forum/databases/databases-aa/mysql/197-corrupted-innodb-table-crashing-mysql-instance-how-to-recover-table

Similar Messages

  • How can recover database using only Full Export ?

    Hi,
    I have one query , i have only Full export is given database , after full export sucessfully
    database Crash by mistacally, how can recover it, i have only export is given no backup is taken (RMAN,COLD or HOT) statergy is use , How can recover it.

    You need to recreate the database from scratch as imp requires a working database.
    You could already do this by transforming the results from
    'alter database backup controlfile to trace', a trace file containing a 'create controlfile' statement, into a 'create database' script.
    After that step you apply your import. Everything after that import is lost forever.
    One would ask for a sanity check of management and personell of a company, which has no backup strategy in place.
    Sybrand Bakker
    Senior Oracle DBA

  • Accessing MySQL InnoDB tables via JDBC using Oracle SQL Developer

    I had posted a problem in the Oracle SQL Developer forum with how that application (v1.1) accesses MySQL InnoDB tables and someone replied that the "[data migration] team created the integration with MySQL", so I am posting here in hopes of learning more about the problem.
    Here's a summary:
    When I use Oracle SQL Developer to query MySQL InnoDB tables, I need to issue a "commit" before I do each query to ensure that I am getting current results. Otherwise, it appears to be using a snapshot as-of the last commit. Is this a problem with SQL Developer, or a JDBC configuration, or MySQL problem even?
    The full details are here:
    Re: MySQL InnoDB tables

    Hi,
    I've posted a response to your original thread.
    Regards,
    Dermot.

  • Sysjobhistory table corrupted how to recover on sql 2008 r2

    sysjobhistory table corrupted how to recover ron sql 2008 r2

    Is it anything related to Master Data Services or just a generic question for SQL Server Agent?
    I guess its generic question and must be moved to database engine forum
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • How to recover corrupted partition table?

    I have a disk that somehow got the partition table corrupted. I am getting lots of "Bad Geometry" errors that state the label says one size while the drive says something different.
    I have tried running the TestDisk (http://www.cgsecurity.org) application, and it seems to find the partitions just fine and I believe that my data is in tact. I just need to correct the partition table and access the UFS file system. The TestDisk reports that "write_part_sun" is not implemented, so it cannot correct the problem. I have checked the source code for the current and beta versions of the program and the function still has not been written.
    Is there another application that I can use to rescue my corrupted partition table? I am not finding much support for Solaris out on the net.
    Thanks.

    Is there another application that I can use to rescue my corrupted partition table? I am not finding much support for Solaris out on the net.Hi
    There is some, but you have to look hard.
    I wrote a partition table editor:
    http://paulf.free.fr/pfdisk.html
    If your LBA values are good, you should be able to restore the CHS values from them. If both the LBA and CHS values are corrupt, and you have a good idea of the sizes of the partitions, then with a calculator you should be able to work out what the values should have been.
    Paul

  • Table Truncated, Flashback is enabled ... How to recover.

    Hi,
    There is a table which was truncated, as we have flashback enabled. Even we have previously enabled row movement of the particular table.
    How to recover ????
    Thanks.

    hi,
    There are three options available:
    1. Restore and recover the primary database to a point in time before the drop.
    This is an extreme measure for one table as the entire database goes back in
    time.
    2. Restore and recover the tablespace to a point in time before the drop.
    This is a better option, but again, it takes the entire tablespace back in time.
    3. Restore and recover a subset of the database as a DUMMY database to export
    the table data and import it into the primary database. This is the best option
    as only the dropped table goes back in time to before the drop.
    For the first, see information on performing incomplete recovery on a database.
    The second and third options are virtually the same, it depends if the entire
    tablespace data should be taken back in time, or just recovering the one table.
    The tablespace point in time recovery (TSPITR) may be useful if there are
    dependencies between the dropped/truncated table and other tables in the
    database. For the second option, see RMAN documentation on TSPITR and/or Note 180436.1 RMAN Tablespace Point in Time Recovery Example. Both procedures
    for the second and third options are very much the same. The differences are
    that the TABLE PITR has to be exported/imported manually while the TABLESPACE
    PITR is fully automated by RMAN.
    This article will deal with the third option.
    General overview of procedure to recover from a DROP or TRUNCATE table by using RMAN.
    To recover from a dropped or truncated table, a dummy database (copy of primary)
    will be restored and recovered to point in time so the table can be exported.
    Once the table export is complete, the table can be imported into the primary
    database. This dummy database can be a subset of the primary database. However,
    the 'dummy' database must include the SYSTEM, UNDO (or ROLLBACK), and the
    tablespace(s) where the dropped/truncated table resides.
    The simpliest method to create this 'dummy' database is to use the RMAN
    duplicate command. See:Note 228257.1 RMAN Duplicate Database in Oracle9iNote 73912.1 RMAN Creating a Duplicate Database -- Oracle8i
    The difference between the two versions is that Oracle9i duplicate command
    allows for a 'SKIP TABLESPACE' option. Thus Oracle9i allows for a duplication
    of a subset of the database.
    In Oracle8i, you cannot 'skip' tablespaces when using duplicate, so you must
    duplicate the entire database. If this is not a desired option, or you must
    restore the original database and thus cannot use
    the rman DUPLICATE.
    NOTE: The remainder of this information is for users who cannot use the
    DUPLICATE command in Oracle8i. I.e., you want to restore only a subset
    of the Oracle8i database.
    Requirements :
    a) RMAN backup of the primary database should be available to the
    host where it has to be restored on.
    b) Use of an RMAN-catalog database
    c) Auxiliary instance created and started in NOMOUNT
    (See Note 180436.1 step I. Create the auxiliary initSID.ora.)
    Create this from the init.ora of the primary database and:
    !!!!! IMPORTANT !!!!!!!!
    If using the same host as the primary, be VERY careful as you do not want to
    restore on top of existing files being used by the primary (production database).
    Doing so can corrupt and crash the production database!!!!!!
    - be sure all paths for this AUX instance are different than primary.
    - be sure CONTROL_FILES parameter has different location but more importantly DIFFERENT NAME.
    - add LOCK_NAME_SPACE to any value other than the primary database name.
    - change/add SERVICE_NAME=AUX1.
    - use the SAME DB_NAME as for the production database
    - BE SURE you include the 'alter database rename file' command at the end
    of the script. This changes the location and/or name of the online
    redo log files.
    d) Set ORACLE_HOME and ORACLE_SID set to the auxiliary instance
    e.q set ORACLE_SID=AUX1
    set ORACLE_HOME=<....>
    !!!!! IMPORTANT !!!!!!!!
    1: Restore and recover the tablespace
    The restore and recovery is done by RMAN. Create a file
    of the script below (e.q table_pitr.cmd) and execute the following
    command :
    $ rman cmdfile=table_pitr.cmd
    NOTE: ORACLE_HOME and ORACLE_SID set to the auxiliary instance
    NOTE: The Auxiliary instance IS the target to rman at this point.
    The RMAN-script :
    connect catalog rman/rman@v920_nlsu31
    connect target /
    run
    allocate channel t1 type sbt_tape
    parms='SBT_LIBRARY=/home/usupport/liblsm.so';
    set until time "to_date( '09-10-2005 06:00', 'DD-MM-RRRR HH24:MI')";
    restore controlfile;
    sql "alter database mount clone database";
    set newname for datafile 1 to '/fs01/oradata/tspitr/system01.dbf';
    set newname for datafile 2 to '/fs01/oradata/tspitr/undotbs01.dbf';
    set newname for datafile 4 to '/fs01/oradata/tspitr/tools01.dbf';
    restore tablespace system, undotbs1, tools;
    switch datafile all;
    sql "alter database datafile 1,2,4 online";
    recover database skip forever tablespace TEMP,INDX,USERS,OLTS_ATTRSTORE,
    OLTS_CT_DN,OLTS_CT_CN, OLTS_CT_OBJCL,OLTS_CT_STORE,OLTS_DEFAULT,
    OLTS_TEMP,OLTS_IND_ATTRSTORE,
    OLTS_IND_CT_DN,OLTS_IND_CT_CN,
    OLTS_IND_CT_OBJCL,OLTS_IND_CT_STORE,
    P1TS_ATTRSTORE,P1TS_IND_STORE;
    sql "alter database rename file ''/fs01/oradata/primary/REDO01.LOG'' to ''/fs01/oradata/tspitr/REDO01.LOG''";
    sql "alter database rename file ''/fs01/oradata/primary/REDO02.LOG'' to ''/fs01/oradata/tspitr/REDO02.LOG''";
    sql "alter database rename file ''/fs01/oradata/primary/REDO03.LOG'' to ''/fs01/oradata/tspitr/REDO03.LOG''";
    /* NOTE: Syntax within rman is two single quotes around each name, this may be operating system specific. */
    release channel t1;
    Explanation :
    - Tape channel allocated, but could also be a disk channel, depending
    on where the backups are.
    - SET UNTIL TIME
    User specified time, just before the DROP/TRUNACTE table
    - MOUNT CLONE DATABASE.
    This forces all datafiles to be put OFFLINE. Just for safety reasons.
    - SET NEWNAME
    New path for the datafile to be restored. Keep in mind that this is
    done on the auxiliary instance and should NOT interfere/overwrite the
    prodution database.
    - ALTER DATABASE RENAME FILE
    This is required to change the location of the online log files. When the
    'resetlogs' is issued, Oracle will create online logs based on specification
    in the controlfile. This command changes the location and/or name. If
    this is being performed on the SAME server, not issuing a rename will
    cause Oracle to reset the production online log files. This will corrupt
    and crash the production database!!!!!!
    - RESTORE TABLESPACE ...;
    Restore the tablespaces which need to be recoverd.
    This includes always the SYSTEM, rollback/undo tablespace and
    the tablespace(s)where the dropped/truncated table resides.
    The SYSTEM tablespace is always included as it containts most / all of
    the objects owned by SYS and SYSTEM. Some other tablespaces might be
    included as well when they contain objects owned by SYS and SYSTEM.
    SQL> select distinct tablespace_name
    from dba_segments where owner in ('SYS', 'SYSTEM');
    - SWITCH DATAFILE ALL;
    Make the changes in the pathname (set by SET NEWNAME) active in the
    controlfile.
    - ALTER DATABASE DATAFILE ... ONLINE
    Online the datafiles which are restored and have to be recovered.
    - RECOVER DATABASE SKIP FOREVER TABLESPACE ......;
    You need to specify the complete list of tablespaces which will not be
    recovered. Else the recovery fails, that it cannot dentify/file the
    tablespace datafile. The SKIP FOREVER clause causes RMAN to take the
    datafiles offline using the DROP option. Only use skip forever when the
    specified tablespaces will be dropped after opening the database. I.e.,
    all tablespaces except the one which contains your data.
    The recovery of RMAN, checks the datafileheaders, to get a starting point
    for the recovery.
    2: Open auxiliary database with RESETLOGS
    $ sqlplus /
    SQL> alter database open resetlogs;
    This step should ALWAYS be executed outside RMAN via SQL*Plus. If the open
    is executed in RMAN it may effect the primary database's entry in the RMAN
    catalog. Backups will fail with messages like:
    RMAN-20011 "target database incarnation is not current in recovery catalog"
    3: Export the table
    The database is recovered and open, so it can be used by export.
    Example:
    $ exp userid=system/<password> file=table.dmp
    tables=(<owner>.<tablename>, ...) rows=Y
    4: Import the export-dump
    Import the data of the dropped table back into the primary/production database.
    Example:
    $ imp userid=system/<password> file=table.dmp ignore=Y
    5: Remove this AUX/DUMMY database
    Shutdown and remove all files associated with this database. It has satisfied
    your purpose. I.e., to give you an export of this table.

  • Mysql instance

    I have somehow locked myself out of being able to connect to
    the mysql 5 server using mysql administrator.
    Error: Could not connect to MySql instance at localhost.
    Error: Access denied for user 'root'@localhost
    I tried Navicat and that also does not let me connect or
    delete or anything.
    Error: Host 'localhost' is not allowed to connect to this
    mysql server.
    Is this something with permissions? I was using the terminal
    so I may have screwed something up. How do I get the permissions or
    whatever back so I can get connect with the mysql administrator?

    /home/oemadmin/product/agent12c/core/12.1.0.4.0/bin/emctl: line 444: ulimit: open files: cannot modify limit: Operation not permitted
    This indicates that the agent software owner is unable to set the number of file descriptors to at least 4096. Please see "File Descriptor Requirements" in Table 7-1 Prerequisites for Installing Oracle Management Agent of the following doc:
    http://docs.oracle.com/cd/E24628_01/install.121/e22624/install_agent.htm#EMBSC186
    Regards,
    - Loc

  • My Garageband project crashed, the file lost/damaged! How to recover it?

    Guys,
    I've been working my garageband project when suddenly the window was closed and the notification asked me to reopen, report or ignore it.
    This is my second time my project crashed. The first time, I chose 'reopen', and my file reopen. All the midi datas still there, but the sample sounds were empty. So I had to put it one by one. What a job because I had more than 15 instruments there.
    But those jobs was better then what I experienced today. After my project crashed, I chose 'ignore' with assumption I would open the last saved file. But it didn't. I really lost my file. The size for one GarageBand projects is about more than 1 MB. But my file after crashed is about 56 KB! So some solutions like 'right click' and 'show package content' didn't work at all because I worked with midi data, not live recording. I tried to find the script file at projectdata and compared it with my other projects, they have more bytes than my lost project file.
    So, if you have a same problem like me, just choose 'reopen'. I hope it will save your midi data so you don't have to work it out from beginning (just like I have to do after write this post ... x) )
    So guys, is there any idea how to recover my crashed file? I've sent a report to Apple and still waiting their answer.
    Thanks a lot
    Andito

    Reinstalling iTunes won't ever repair damaged libraries or find lost files.
    Unlike nearly all Windows software double-clicking an iTunes Library file does not necessarily open the selected database. Rather, iTunes opens the last database it successfully opened, or if that was in the "normal" <User's Music>\iTunes location, but is missing, it will create a new empty library.
    You can open an alternate library file, or create a new one, by holding down shift as you start iTunes. Although you can open the library files in the Previous iTunes Libraries folder this way, your library will perform better if you restore the archived library database to the main iTunes folder in the way that I have described.
    Your most recent library may be present in the main iTunes folder as a .tmp file, or recoverable via a file undelete tool, however either of these files, if found, may be partially corrupt getting you no further forward.
    The two most recent releases of iTunes were June 11th and March 28th 2012..
    Yes I read your post, but I don't know if you know all of the above. If you had a full backup of your library you could just restore that. It is possible that what you've tried so far hasn't yet brought back the most complete version of your library that is available to you. As a last resort you will have to work with what you have and add in whatever media is not in that version of your library, accepting the loss of recently added ratings, playlists & play counts.
    You can simply add the entire iTunes Media folder using File > Add Folder to Library folder which should ignore everything already in the library and only add new (to that database) stuff. If there is any chance that your iTunes media folder contains .m3u playlist files the import process will also import all of those, which may not be what you want. iTunes Folder Watch would then present a better approach.
    tt2

  • Search text for keywords - innodb table

    I have a longtext column in a table that I need to search
    through for keywords. The table is in innodb format. I dont want to
    change it to myisam because I can't afford to have it lock at the
    table level... I prefer the row level of innodb.
    How can I build a search around this? It would be nice to
    have all words, any words, and exact phrase as an option, as seen
    in tom mucks extension (which i own)... however, this recordset has
    so many arrays, it's completely hand coded and they extension isn't
    suppose to work with anything but default recordsets.
    Any suggestions? How can I have a more comprehensive search
    using a innodb table?

    tom mucks extension lets you use keywords 3 ways... all
    words, any words, and exact phrase.
    http://www.tom-muck.com/extensions/help/DynamicSearchPHP/

  • 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]

  • I was using photoshop CC as normal, when suddenly it started going haywire. It has corrupted all the one PSD files by distorting the images and colour. Does anyone know how to recover the original images?

    I was using photoshop CC as normal, when suddenly it started going haywire. It has corrupted all the open PSD files by distorting the images and colour. They are now completely unrecognisable and unusable. Does anyone know how to recover the original images as I was saving them as I went along but the files are now corrupt?

    What version of Photoshop are you running?
    I've seen a couple of instances over the last week or two where Photoshop has added masks, strange colours and also merged content from two separate PSD files that were open at the same time.
    This has occurred on two different iMacs, (both 10.10.x) running Photoshop CC 2014.2.2 (20141204.r.310 x64).
    see image below for example:

  • MySQL Instance Metrics not getting collected in OEM 12c

    Hi All,
    For MySQL instance, we have enabled "Other Statistics" metric collection and the collection time is every 15 mins.
    We have not set any thresholds so this is not for alerting purpose.
    For reference if I consider mysql_s_cpcwcmsqlq02e, I checked in backend the scheduler status and found below output in which I am not able to see other statistics metric for mysql:
    cpcwcmsqlq02e[oemadmin]_oemagent> emctl status agent scheduler|grep mysql
    /home/oemadmin/product/agent12c/core/12.1.0.4.0/bin/emctl: line 444: ulimit: open files: cannot modify limit: Operation not permitted
    2015-04-17 10:35:20.420 : mysql:mysql_s_cpcwcmsqlq02e:temp
    2015-04-17 10:35:39.090 : mysql:mysql_s_cpcwcmsqlq02e:qcache
    2015-04-17 10:35:47.390 : mysql:mysql_s_cpcwcmsqlq02e:innodb_row_locks
    2015-04-17 10:36:01.540 : mysql:mysql_s_cpcwcmsqlq02e:slave_status
    2015-04-17 10:36:04.474 : mysql:mysql_s_cpcwcmsqlq02e:binlog
    2015-04-17 10:36:10.492 : mysql:mysql_s_cpcwcmsqlq02e:network
    2015-04-17 10:36:16.059 : mysql:mysql_s_cpcwcmsqlq02e:ProcAggr
    2015-04-17 10:36:53.566 : mysql:mysql_s_cpcwcmsqlq02e:innodb_row_ops
    2015-04-17 10:37:11.381 : mysql:mysql_s_cpcwcmsqlq02e:Response
    2015-04-17 10:37:15.406 : mysql:mysql_s_cpcwcmsqlq02e:key_cache
    2015-04-17 10:37:32.147 : mysql:mysql_s_cpcwcmsqlq02e:joins
    2015-04-17 10:37:34.352 : mysql:mysql_s_cpcwcmsqlq02e:tbl_locks
    2015-04-17 10:37:51.038 : mysql:mysql_s_cpcwcmsqlq02e:sort
    2015-04-17 10:38:08.789 : mysql:mysql_s_cpcwcmsqlq02e:slave_statistics
    2015-04-17 10:38:53.059 : mysql:mysql_s_cpcwcmsqlq02e:commands
    2015-04-17 10:39:22.007 : mysql:mysql_s_cpcwcmsqlq02e:connections
    2015-04-17 10:39:36.997 : mysql:mysql_s_cpcwcmsqlq02e:innodb_io
    2015-04-17 10:39:46.922 : mysql:mysql_s_cpcwcmsqlq02e:innodb_buffer
    2015-04-17 10:48:04.530 : mysql:mysql_s_cpcwcmsqlq02e:handlers
    2015-04-17 11:16:36.543 : mysql:mysql_s_cpcwcmsqlq02e:mysql_config
    2015-04-17 11:18:07.561 : mysql:mysql_s_cpcwcmsqlq02e:mysql_slave_config
    I am not able to run manually collection of other statistics metrics. (Collection Name is "mysqlstatus").
    Strange is for only 5 instances i am able to see data for this metrics.
    Please help .. Oracle is not able to answer as plugin is pythian.
    Thanks!
    Avinash

    /home/oemadmin/product/agent12c/core/12.1.0.4.0/bin/emctl: line 444: ulimit: open files: cannot modify limit: Operation not permitted
    This indicates that the agent software owner is unable to set the number of file descriptors to at least 4096. Please see "File Descriptor Requirements" in Table 7-1 Prerequisites for Installing Oracle Management Agent of the following doc:
    http://docs.oracle.com/cd/E24628_01/install.121/e22624/install_agent.htm#EMBSC186
    Regards,
    - Loc

  • Crash recovery/ instance recovery

    Hi,
    How do oracle identifies crash recovery/ instance recovery
    is required?
    Regards,
    Mathew

    Hi,
    >>But how do oracle identifies dabase is abnormally down and crash recovery is required?
    I think that the checkpoint information that is desynchronized in redo log files and datafiles. It is necessary understand what is a checkpoint and what the CKPT process do. A checkpoint is a moment in time when all the changes (dirty blocks) made in the database buffer cache are made to the data files. The checkpoint is performed by the CKPT process and it creates an entry in the control file to identify the point in the online redo log file from where the instance recovery should begin in case of an instance failure. One of the ways a checkpoint is initiated is by the data block writer (DBWR) process. The DBWR process initiates a checkpoint by writing all modified data blocks in the data buffers (dirty buffers) to the data files. After a checkpoint is performed, all committed transactions are written to the data files. If the instance were to crash at this point, only new transactions that occurred after this checkpoint would need to be applied to the database to enable a complete recovery. Therefore, the checkpoint process determines which transactions from the redo logs need to be applied to the database in the event of a failure and subsequent recovery.
    Cheers

  • SoundTrak Crashed!! How I got my data back.

    If you get the beachball during a record, by what could be the screen saver kicking in or the disk drive going to sleep (all of which should be disabled to start with), then you might get a file which shows size and a good time of creation, but it won't play or show a waveform. In fact even Audacity won't touch it.  Here's how to recover the data. Hopefully you know your settings you were using, aka 48khz, 44.1 etc.  For the sake of this post, I used 24bit 44.1khz AIFF sample rescue information.  Bear with me.
    First locate your bad file in the soundtrak pro recordings folder. Duplicate it. Note its size. Take the copy and get it to the desktop. Do not muck with the original.
    Download the 0xED (thats the name) hex editing app.  You can also have a dupe file of a working file from an earlier session. Your going to want to copy it as well and put it on your desktop. You'll need the header info from it.
    Open your known good file wih 0xED. Highlight and copy from the beginning of that file address 0000000 thru 0000FF7 with a contrl C on the keyboard.
    Open your bad file copy. They can both be opened at the same time.  Highlight those same addresses and contrl V that data into your bad file.  Pay close attention thats all you changed. Nothing should have shifted anywhere else. If you screwed up, cntrl Z out of that and try it again until it looks like a clean paste. Yes the data is going to be different in your paste operation as thats why your file is hosed to begin with. Hopefully you just now patched your file.  SAVE the potential repaired file using the save icon in 0xED. Open our repaired file
    with Audacity, or SoundTrak Pro. You should have a workable file now.  If not, go back and try again as perhaps you messed something up or didnt save the repair properly.  Its crucial you use data from a good file of the same settings to fix the bad one. If your not sure of the settings you used, try a couple possibilities. Most people use the same settings with only a few variations so your choices should be few hopefully. NOTE: To test your file, close out all instances of the bad file in Sountrak Pro or your new file won't chck out if it is indeed fixed. DO a fresh load of your new file into a freshly started Sountrak Pro or Audacity.
    What else have I used? I used SoundHack a few times. Its a bit strange and clunky. The results are hard to nail down. I ended up with a file that played like MickeyMouse but I was able to use Audacity to cut the speed down by 50% and save the audio.
    The problems I encountered to get me to this point were as described in the beginning of this write up. I had the beachball. One time Sountrak just quit without warning. Again, the data was there but just wasnt closed out properly.
    I hope this saves someone from a disaster. It saved me. I never gave up.
    cheers
    Johnny
    P.S.  Here's the data for an AIFF 44.1k 24 bit good file if it can be of use. You'd want to place it right over your bad file in 0xED. No guarantees. Make sure your muckng with a copy and NOT your original file...... (yes thats 4C twice, thats not a misprint)
    464F524D0A90582741494646434F4D4D000000120001000000000018400EAC44000000000000464C 4C5200000FC20000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0 0000000000000000000000000000000000000000000000000000000000000000000000000000000 0
    53534E440B3E3D63
    Message was edited by: johnnyU  by all means drop me a line if this helps anyone. I'd love to know.

    if you did not do a back up of your phone and memory card there is no way to get back the information. you can't roll back anything the memory or firmware once done is done for good. sorry i know this is not good news
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • How to recover the data from a  dropped table in production/archive mode

    How to recover the data/change on a table that was dropped by accident.
    The database is on archive mode.

    Oracle Version. ? If 10g.
    Try this Way
    SQL> create table taj as select * from all_objects where rownum <= 100;
    Table created.
    SQL> drop table taj ;
    Table dropped.
    SQL> show recyclebin
    ORIGINAL NAME    RECYCLEBIN NAME                OBJECT TYPE  DROP TIME
    TAJ              BIN$b3MmS7kYS9ClMvKm0bu8Vw==$0 TABLE        2006-09-10:16:02:58
    SQL> flashback table taj to before drop;
    Flashback complete.
    SQL> show recyclebin;
    SQL> desc taj;
    Name                                      Null?    Type
    OWNER                                              VARCHAR2(30)
    OBJECT_NAME                                        VARCHAR2(30)
    SUBOBJECT_NAME                                     VARCHAR2(30)
    OBJECT_ID                                          NUMBER
    DATA_OBJECT_ID                                     NUMBER
    OBJECT_TYPE                                        VARCHAR2(19)
    CREATED                                            DATE
    LAST_DDL_TIME                                      DATE
    TIMESTAMP                                          VARCHAR2(19)
    STATUS                                             VARCHAR2(7)
    TEMPORARY                                          VARCHAR2(1)
    GENERATED                                          VARCHAR2(1)
    SECONDARY                                          VARCHAR2(1)
    SQL>M.S.Taj

Maybe you are looking for