Recover from consistency errors in table.

Hi all,
I'm having trouble correcting consistency error on a table. I've tried a complete rebuild of all the indexes on the table but the result stays the same and is as follows:
Msg 8951, Level 16, State 1, Line 1
Table error: table 'METINGEN_METINGEN' (ID 36299289). Data row does not have a matching index row in the index 'idx_METINGEN_METINGEN_METINGEN' (ID 7). Possible missing or invalid keys for the index row matching:
Msg 8955, Level 16, State 1, Line 1
Data row (1:109702270:2) identified by (AutoID = 2150390 and MSESSIEID = '0000021587' and SOURCETYPE = 'M' and MEET_DATUM = '2008-09-25 00:00:00.000' and MEET_TIJD = '08:43:41') with index values 'METING_ID = '' and AutoID = 2150390 and MSESSIEID = '0000021587' and SOURCETYPE = 'M' and MEET_DATUM = '2008-09-25 00:00:00.000' and MEET_TIJD = '08:43:41''.
Msg 8952, Level 16, State 1, Line 1
Table error: table 'METINGEN_METINGEN' (ID 36299289). Index row in index 'idx_METINGEN_METINGEN_METINGEN' (ID 7) does not match any data row. Possible extra or invalid keys for:
Msg 8956, Level 16, State 1, Line 1
Index row (1:103520455:62) with values (METING_ID = '' and AutoID = 2150390 and MSESSIEID = '퍠෶ and SOURCETYPE = '퓠' and MEET_DATUM = '2008-09-25 00:00:00.000' and MEET_TIJD = '푐෶) pointing to the data row identified by (AutoID = 2150390 and MSESSIEID = '퍠෶ and SOURCETYPE = '퓠' and MEET_DATUM = '2008-09-25 00:00:00.000' and MEET_TIJD = '푐෶).
DBCC results for 'METINGEN_METINGEN'.
There are 48684994 rows in 4416906 pages for object "METINGEN_METINGEN".
CHECKTABLE found 0 allocation errors and 2 consistency errors in table 'METINGEN_METINGEN' (object ID 36299289).
repair_rebuild is the minimum repair level for the errors found by DBCC CHECKTABLE (EVD_Ont.dbo.METINGEN_METINGEN).
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
and also i can't find what (ID 7) means..

DBCC CHECKTABLE with the repair_rebuild is the next step i'm going to try.  Do you have an idea how long it should take? I mean, would it take as long as a checktable without the repair_rebuild?
Its not dbcc checktable but dbcc checkdb. You can use below query
Use db_name
GO
ALTER DATABASE db_name SET SINGLE_USER with rollback immediate
GO
DBCC CHECKDB('db_name', REPAIR_REBUILD)
GO
Time depends on size of database and amount of corruption checkdb has to fix
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

Similar Messages

  • CHECKDB found 0 allocation errors and 1 consistency errors in table 'sys.syscolpars' (object ID 41)

    Msg 2511, Level 16, State 2, Line 1
    Table error: Object ID 41, index ID 1, partition ID 281474979397632, alloc unit ID 281474979397632 (type In-row data). Keys out of order on page (1:187), slots 9 and 10.
    CHECKDB found 0 allocation errors and 1 consistency errors in table 'sys.syscolpars' (object ID 41).
    CHECKDB found 0 allocation errors and 1 consistency errors in database 'db_name'.
    repair_rebuild is the minimum repair level for the errors found by DBCC CHECKDB (adv_tvs).
    Help required on the above error mentioned

    Hi Rapunzel,
    The minimum repair suggested is repair_rebuild you can try that. As per mssage there is corruption in your database and it can only be corrected by either repairing or Restoring from known good backup.For doing repair the database must be in single-user
    mode.
    Please read
    dbcc checkdb repair_rebuild option
    Since DBCC CHECKDB with any of the REPAIR options are completely logged and recoverable, Microsoft always recommends a user use CHECKDB with any REPAIR options within a transaction (execute BEGIN TRANSACTION before running the command) so that the user can
    confirm he/she wants to accept the results of the operation. Then the user can execute COMMIT TRANSACTION to commit all work done by the repair operation. If the user does not want to accept the results of the operation, he/she can execute a ROLLBACK TRANSACTION
    to undo the effects of the repair operations.
    REPAIR_REBUILD does not repair errors involving FILESTREAM data.
    How big is database. If it is small and backup also is corruption free you should consider restoring from backup
    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

  • Sometimes (about 60% of the time) when I shut-down or restart the computer normally, it retsarts saying it has recovered from an error. I have nothing opening at login, and I have checked everything in the Disk Ultility... all seems ok.

    It's a strange little anomaly, computer seems to work fine, never crashes, all programs are running fine, but when I do a restart or a shutdown it restarts with the "recovering from an error..." message. It happens all the time, even if I've opened nothing (just started up and then shutdown, [I have nothing starting up at login]). I have checked all the permissions and verified the disk... Everything checks out ok. Only 'non-legit' program or app I have is the VLC player, but I don't see how that could affect the shutdown or restart process.

    Hi Norbert,
    Forcing a shutdown can cause hard drive directory corruption. You should start from the install disc and repair the disk with Disk Utility.
    When other methods don't work, holding the power button to force a shutdown is the only way. You can try control-F12 (opens the Restart, Sleep, Shutdown dialog box) and then press return to shutdown or control-command-F12 (quit all applications and restart).
    If just one application is hanging try using Force Quit (command-option-esc). That will also work to force quit the Finder if it hangs.
    John

  • Has anyone been able to recover from an error -1 when restoring an Iphone 4

    Is there a way to recover from an error -1 when trying to restore an Iphone 4 or is this a hardware issue?  I have a friends Iphone 4 (GSM) and everytime I try to restore I get an unknown error -1 message at the very end of the restore.  Not much info is known about this error, I couldn't find anything online.  I've updated to the latest Itunes, cleared out the host files of computer and tried to recover with latest 6.1.3 OS, PLEASE HELP!

    Error 1 or -1 indicates a serious hardware failure.
    Take the device to Apple for evaluation and possible replacement.

  • Best way to recover from "drop user; drop table space"

    Hello,
    I am practicing several different RMAN recovery senarios on oracle 11g windows 2003.
    The senario that I am stuck on is.
    drop user MYUSER cascade;
    drop table space MYUSER including contents and datafiles;
    Originally, I was trying to do this with RMAM. From further reading, it seems that RMAN fit for this type of recovery.
    What is the best approach to recover from this?
    thanks for any tips.

    DBPITR did not bring backup my tablespaces.
    break database
    drop user PWRPLANT CASCADE
    drop role PWRPLANT_ROLE_USER
    drop role PWRPLANT_ROLE_DEV
    drop role PWRPLANT_ROLE_ADMIN
    alter tablespace PWRPLANT_IDX offline
    alter tablespace PWRPLANT offline
    drop tablespace PWRPLANT_IDX INCLUDING CONTENTS AND DATAFILES
    drop tablespace PWRPLANT INCLUDING CONTENTS AND DATAFILES
    recover with BDITR
    RMAN> run {set until sequence 56; restore database; recover database;}
    executing command: SET until clause
    using target database control file instead of recovery catalog
    Starting restore at 28-APR-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=317 device type=DISK
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to I:\ORACLE\ORADATA\PWRGAME\SYSTEM
    01.DBF
    channel ORA_DISK_1: restoring datafile 00002 to I:\ORACLE\ORADATA\PWRGAME\SYSAUX
    01.DBF
    channel ORA_DISK_1: restoring datafile 00003 to I:\ORACLE\ORADATA\PWRGAME\UNDOTB
    S01.DBF
    channel ORA_DISK_1: restoring datafile 00004 to I:\ORACLE\ORADATA\PWRGAME\USERS0
    1.DBF
    channel ORA_DISK_1: reading from backup piece I:\ORACLE\FLASH_RECOVERY_AREA\PWRG
    AME\BACKUPSET\2011_04_28\O1_MF_NNNDF_DATABASE_FULL_BACKUP_6VMMSSXV_.BKP
    channel ORA_DISK_1: piece handle=I:\ORACLE\FLASH_RECOVERY_AREA\PWRGAME\BACKUPSET
    \2011_04_28\O1_MF_NNNDF_DATABASE_FULL_BACKUP_6VMMSSXV_.BKP tag=DATABASE_FULL_BAC
    KUP
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:07:06
    Finished restore at 28-APR-11
    Starting recover at 28-APR-11
    using channel ORA_DISK_1
    starting media recovery
    archived log for thread 1 with sequence 55 is already on disk as file I:\ORACLE\
    PRODUCT\11.1.0\DB_1\RDBMS\ARC00055_0748950531.001
    archived log file name=I:\ORACLE\PRODUCT\11.1.0\DB_1\RDBMS\ARC00055_0748950531.0
    01 thread=1 sequence=55
    media recovery complete, elapsed time: 00:00:02
    Finished recover at 28-APR-11
    Did I miss something?

  • Consistency errors in table RSMONICDP

    After running a consistency check on the database we have 2 errors in table RSMONICDP. The only option is to run a repair delete on the database but I'm worried about what we might loose. The error is in one object, could someone tell me what implications this might have on the data loaded in the system?

    Hi Chris,
    Please let how to fix the issue?..
    I  also facing the same issue while running the CHECKDB
    Thanks
    Malai

  • Image recover from 9790 error 102

    Hi 
    I have problem with BB 9790. Error 102
    The most important for me is recover image from device memory.
    Is this still possible?
    The filesystem dump generate: 
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:1 type:2 appystem data:JVM:INFOp=2663bff7,a='7.1.0.714',o='9.16.0.158',h=26001507
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:CCR3i=ffff2208,h=7ab
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:CCR3i=ffff2211,h=7ae
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:CCR5h=2a08
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM: 100001 gc=0 idle=0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM: thread 0: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM: thread 1: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM: thread 2: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM: thread 3: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:System Startup
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:FSNHv=1
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:CVER=7.1.0.714
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:LINK net_rim_bb_qm_google_help_he
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VMSIDv=968449
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:CMM: verifyHash1 failed for net_rim_bb_qm_peer_resource_hu(7007)
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:CMM: hash (codfile)0 db d4 cb 5e 74 7e e5 7a be 04 fd 04 ba 40 71 81 ff f6 5f cb
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:CMM: hash (mod_info)1 99 ec e7 ba 20 7c 8e 3e a5 cc 25 3e be 2c cd 82 e8 12 d2 3f
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:CMM: verifyHash256 failed for net_rim_bb_qm_peer_resource_hu(7007)
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:CMM: hash (codfile)2 12 41 4b 7b f0 65 f4 63 27 9e ef f9 aa cb b0 18 61 9a f0 ac 37 f0 52 00 84 11 b5 c7 cd 5d ac 4f
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:CMM: hash (mod_info)2 57 80 b4 23 1a 8f 2e ba 34 78 c5 d3 24 36 92 59 22 58 86 76 53 8a 62 f9 0a e2 50 4b f7 c8 28 50
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:VM:+BORK
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:JVM Error 102
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:Invalid code in filesystem
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data:JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:2 type:2 appystem data:JVM:INFOp=2663bff7,a='7.1.0.714',o='9.16.0.158',h=26001507
    Name Version Size Created
    3 net_rim_drm 7.1.0.714 32312 0 Wed Sep 05 23:30:44 2012
    6 net_rim_media_vfs 7.1.0.714 3320 0 Wed Sep 05 23:30:08 2012
    9 net_rim_media_api 7.1.0.714 61456 0 Wed Sep 05 23:30:49 2012
    18 net_rim_media 7.1.0.714 193960 0 Wed Sep 05 23:30:55 2012
    21 net_rim_escreen_app 7.1.0.714 10424 0 Wed Sep 05 23:31:36 2012
    24 net_rim_escreen 7.1.0.714 52944 0 Wed Sep 05 23:31:09 2012
    27 net_rim_convenience_key_api 7.1.0.714 4380 0 Wed Sep 05 23:31:58 2012
    33 net_rim_barcodelib 7.1.0.714 171956 0 Wed Sep 05 23:30:44 2012
    36 net_rim_ams_enforcement 7.1.0.714 16184 0 Wed Sep 05 23:31:01 2012
    39 net_rim_amms 7.1.0.714 16856 0 Wed Sep 05 23:30:08 2012
    42 net_rim_bb_spellcheck 7.1.0.714 4936 0 Wed Sep 05 23:32:02 2012
    45 net_rim_bb_maps_resource__tr 6.2.0.22 8480 0 Thu May 03 17:00:01 2012
    48 net_rim_bb_maps_resource__ru 6.2.0.22 9752 0 Thu May 03 16:59:48 2012
    51 net_rim_bb_maps_resource__ro 6.2.0.22 8552 0 Thu May 03 16:59:43 2012
    54 net_rim_bb_maps_resource__pt 6.2.0.22 8312 0 Thu May 03 16:59:34 2012
    6950 net_rim_bb_youtube_ru 1.0.0.47 5244 0 Fri Apr 27 21:47:08 2012
    6953 net_rim_bb_youtube_ro 1.0.0.47 4612 0 Fri Apr 27 21:47:06 2012
    6956 net_rim_bb_youtube_pt 1.0.0.47 4500 0 Fri Apr 27 21:47:01 2012
    6959 net_rim_bb_youtube_pl 1.0.0.47 4648 0 Fri Apr 27 21:46:59 2012
    6962 net_rim_bb_youtube_nl 1.0.0.47 4512 0 Fri Apr 27 21:46:54 2012
    6965 net_rim_bb_smartcardreader_microSD 7.1.0.714 5856 0 Wed Sep 05 23:58:03 2012
    6971 net_rim_bb_qm_peer_resource_en_GB 6.2.0.50 78700 0 Fri Apr 27 16:05:36 2012
    6977 net_rim_bb_qm_peer_resource_ro 6.2.0.50 79200 0 Fri Apr 27 16:07:13 2012
    6983 net_rim_bb_qm_peer_resource_el 6.2.0.50 89160 0 Fri Apr 27 16:05:26 2012
    6989 net_rim_bb_qm_peer_resource_tr 6.2.0.50 79688 0 Fri Apr 27 16:07:34 2012
    6995 net_rim_bb_qm_peer_resource_ru 6.2.0.50 86448 0 Fri Apr 27 16:07:18 2012
    7001 net_rim_bb_qm_peer_resource_pl 6.2.0.50 82260 0 Fri Apr 27 16:06:58 2012
    Error
    Error
    Error
    Error
    Error
    Error
    Error
    Error
    Error
    Error
    Error
    Debug mode
    <<
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:1 type:2 appystem data&colon;JVM:INFOp=2663bff7,a='7.1.0.714',o='9.16.0.158',h=26001507
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CCR3i=ffff2208,h=7ab
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CCR3i=ffff2211,h=7ae
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CCR5h=2a08
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: 100001 gc=0 idle=0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 0: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 1: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 2: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 3: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;System Startup
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:FSNHv=1
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CVER=7.1.0.714
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:LINK net_rim_bb_qm_google_help_he
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VMSIDv=968449
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: verifyHash1 failed for net_rim_bb_qm_peer_resource_hu(7007)
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (codfile)0 db d4 cb 5e 74 7e e5 7a be 04 fd 04 ba 40 71 81 ff f6 5f cb
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (mod_info)1 99 ec e7 ba 20 7c 8e 3e a5 cc 25 3e be 2c cd 82 e8 12 d2 3f
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: verifyHash256 failed for net_rim_bb_qm_peer_resource_hu(7007)
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (codfile)2 12 41 4b 7b f0 65 f4 63 27 9e ef f9 aa cb b0 18 61 9a f0 ac 37 f0 52 00 84 11 b5 c7 cd 5d ac 4f
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (mod_info)2 57 80 b4 23 1a 8f 2e ba 34 78 c5 d3 24 36 92 59 22 58 86 76 53 8a 62 f9 0a e2 50 4b f7 c8 28 50
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:+BORK
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JVM Error 102
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;Invalid code in filesystem
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CCR3i=ffff2208,h=7aa
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CCR3i=ffff2211,h=7ad
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CCR5h=2a08
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: 100001 gc=0 idle=0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 0: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 1: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 2: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM: thread 3: addr=0x0 native=none
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;System Startup
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:FSNHv=1
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:CVER=7.1.0.714
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:LINK net_rim_bb_qm_google_help_he
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VMSIDv=968449
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: verifyHash1 failed for net_rim_bb_qm_peer_resource_hu(7007)
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (codfile)0 db d4 cb 5e 74 7e e5 7a be 04 fd 04 ba 40 71 81 ff f6 5f cb
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (mod_info)1 99 ec e7 ba 20 7c 8e 3e a5 cc 25 3e be 2c cd 82 e8 12 d2 3f
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: verifyHash256 failed for net_rim_bb_qm_peer_resource_hu(7007)
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (codfile)2 12 41 4b 7b f0 65 f4 63 27 9e ef f9 aa cb b0 18 61 9a f0 ac 37 f0 52 00 84 11 b5 c7 cd 5d ac 4f
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;CMM: hash (mod_info)2 57 80 b4 23 1a 8f 2e ba 34 78 c5 d3 24 36 92 59 22 58 86 76 53 8a 62 f9 0a e2 50 4b f7 c8 28 50
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;VM:+BORK
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JVM Error 102
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;Invalid code in filesystem
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: disconnect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:0 type:2 appystem data&colon;JL: connect
    guid:0x97C9F5F641D25E5F timeUTC) Thu Jan 01 00:00:00 1970 severity:2 type:2 appystem data&colon;JVM:INFOp=2663bff7,a='7.1.0.714',o='9.16.0.158',h=26001507
    >>
    Error list is bigger.
    Thank for any help.
    Daniel

    Your only hope is to try and restart the device in safe mode.
    Remove the battery. While holding the back key, reinsert the battery. Continue to hold the back key for another 20 seconds. See if the device will start up.
    If it doesn't start up then you'll have to reload the OS and anything in the device memory is gone. sorry.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Recovering from ActiveX Error in TestStand

    If I were running a CVI DLL code module from TestStand using the CVI
    adapter and terminated it somewhere in the code module by using the Windows
    SDK ExitProcess(0); command it will return to TestStand and generate an
    ActiveX error as follows:
    " -17702; An error occurred accessing the CVI ActiveX
    automation server.The CVI adapter will attempt to reconnect on next
    execution."
    It appears any subsequent communication to the CVI server in this same
    execution (i.e. by other steps that follow) will fail also until the
    execution is re-started. Is there a way to reset/restart the communication
    in this sequence's execution between TestStand steps? i.e can the CVI
    adapter reconnect on this execution. How does TestStand re-establ
    ish
    communication with the CVI server using the CVI adapter ? Does it have to
    destroy that object and create a new one to recover ?

    Scott,
    Your recap is excellent. The SDK ExitProcess() function is called in a different thread in our code module when the Terminate button on our ActiveX operator interface is clicked. This kill's the code module immediately and returns to TestStand with an ActiveX error which can be ignored. Then the Cleanup group can be run to reset the test equipment. At this point you must restart another execution to reset the ActiveX connection. This model works well if you are resetting and not trying to perform other steps once you return to TestStand. This implies our code module will always be run out of process. I tried the Time Limits idea you suggested but that still does not terminate the thread our code module is executing in. The RaiseException idea I also tried. I raised the exception in the main thread of the code module that was executing. This has the side effect of returning to the CVI debugger instead of TestStand which is not good. We are going to stick with the ExitProcess() method for the time being and see how it works in the long run. In the next version of TestStand it would be nice if this feature could be added. Also for your info due to TestStand's architecture it seems all code module's that are called using the CVI adapter must return from the main of the code module that was called in TestStand. This implies that if the main has several layer's of functions below it that it calls. Somehow these call's must recognize (poll) for the termination event from TestStand and return all the way up the call stack back to the original code module that was called by TestStand. Therefore all of the users code/function's must error check every line of code in the main to see if we want to return and every function must check every line of code to return up the stack to the main. This makes the code a lot less readable in main for example if(function == FAIL) return -1; instead of function();. The only alternative to this method that I have found is the ANSI "C" setjmp/longjmp command which will allow us at any point in our Test Code or sub function's to return cleanly back to TestStand. This is preferable to me because the code is more readable and functionally equivalent to returning up the call stack. Do you know of any other methods of doing this ? Our individual code modules may be up to 1000 lines and take anywhere from 1 - 10 minutes to complete with many nested function's being called from the main.
    Thanks For Your Help,
    Tom D

  • ODBC Data Source Won't Recover from Connection Errors

    I have several ODBC data sources to a mainframe and want to
    use the "Maintain Connections" setting as it dramatically improves
    performance under heavy load. Problem is that we frequently have
    path problems between the CF server and the mainframe 180 miles
    away. With the Maintain Connections checked, the data source
    doesn't consistently start working again after the path problem
    clears up. The path problem usually only lasts a minute or two, but
    SOME queries through the affected data sources continue to raise
    errors until the ODBC Service is cycled. The SOME aspect is really
    weird because not every hit through that data source reports an
    error after the path comes back up. I've had side-by-side users hit
    the same page using that DS and one consistently get's an error and
    the other works fine. Restarting the ODBC service clears the
    problem so it works fine for everybody. Of course that breaks all
    the connections that were still working so I just affected a bunch
    more users. Silver lining there is that at least nobody can claim
    preferential treatment right. It's also kind of bizzare that I can
    use the CF Administrator to verify all data sources and they
    usually all report that they are working fine even while some
    connections are still reporting problems.
    The specific ODBC drivers we are using are Neon Shadow
    Drivers (Multi Threaded). I'm thinking about using the Admin API to
    hit the Disable Connections and then re-enable it.
    Any constructive, tactful input for addressing this problem
    would be appreciated.

    spikehenning wrote:
    > I have several ODBC data sources to a mainframe and want
    to use the "Maintain
    > Connections" setting as it dramatically improves
    performance under heavy load.
    > Problem is that we frequently have path problems between
    the CF server and the
    > mainframe 180 miles away. With the Maintain Connections
    checked, the data
    > source doesn't consistently start working again after
    the path problem clears
    > up. The path problem usually only lasts a minute or two,
    but SOME queries
    > through the affected data sources continue to raise
    errors until the ODBC
    > Service is cycled. The SOME aspect is really weird
    because not every hit
    > through that data source reports an error after the path
    comes back up. I've
    > had side-by-side users hit the same page using that DS
    and one consistently
    > get's an error and the other works fine. Restarting the
    ODBC service clears the
    > problem so it works fine for everybody. Of course that
    breaks all the
    > connections that were still working so I just affected a
    bunch more users.
    > Silver lining there is that at least nobody can claim
    preferential treatment
    > right. It's also kind of bizzare that I can use the CF
    Administrator to verify
    > all data sources and they usually all report that they
    are working fine even
    > while some connections are still reporting problems.
    >
    > The specific ODBC drivers we are using are Neon Shadow
    Drivers (Multi
    > Threaded). I'm thinking about using the Admin API to hit
    the Disable
    > Connections and then re-enable it.
    Do you have a JDBC Type 4 alternative for these drivers? I
    got rid of
    all my datasource problems long ago when I got rid of ODBC
    altogether.
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • CRIO startup directory was typed STARTUP and now will not boot. How do I recover from this error or how do I rename the directory when my proxy server is read only due no startup files?

    I loaded files on the cRIO but used upper case letters for the startup directory.  Now I cannot access the RIO since it didn't boot. The proxy server comes up read-only so I can't reload the files or change the directory.  I tried the RS232 port but I can't get it to respond to commands even though I can see the processor boot.

    lockmas wrote:
    I loaded files on the cRIO but used upper case letters for the startup directory.  Now I cannot access the RIO since it didn't boot. The proxy server comes up read-only so I can't reload the files or change the directory.  I tried the RS232 port but I can't get it to respond to commands even though I can see the processor boot.
    There is NO need to put your entire question into the subject line of your post.
    cRIO will not boot is a suitable subject line

  • What is the best way to recover from an error which requires a reconnect (e.g. ORA-01033)?

    We use 11g with the OCI library.  A session pool was created for the server process (OCISessionPoolCreate), and a session was obtained in a thread (OCISessionGet).  Is it sufficient to call OCISessionRelease(...,OCI_SESSRLS_DROPSESS) in the thread, and then get a new session?  Or should the application call OCISessionPoolDestroy(...,OCI_SPD_FORCE), and then recreate the pool?

    Do the following:
    Copy the backup library package/folder to the Pictures folder on your new Mac. If you have any other libraries there move them to the Desktop first.
    Download and run iPhoto Library Upgrader 1.1 on the library to convert it to the new format.  The app will be in your Applications/Utilities folder.
    Launch iPhoto 9.5.1 and open the "converted" library.
    Now you can delete any libraries that you previously moved to the Desktop.

  • How to recover from database consistency errors?

    I have a SQL server cluster 2005. Due to the broken of SAN storage's controller and disks, one of my SharePoint content DB has corrupted and has been causing numerous error to the SharePoint. I have run the command "DBCC CHECKDB WITH NO_INFOMDGS"
    and the truncated output are as following:
    Table error: Object ID 53575229, index ID 1, partition ID 72057594038583296, alloc unit ID 72057594043564032 (type In-row data), page ID (3:21580503) contains an incorrect page ID in its page header. The PageId in the page header = (3:21580511).
    CHECKDB found 0 allocation errors and 6 consistency errors in table 'AllDocs' (object ID 53575229).
    Table error: Object ID 53575229, index ID 1, partition ID 72057594038583296, alloc unit ID 72057594043564032 (type In-row data), page ID (3:21580503) contains an incorrect page ID in its page header. The PageId in the page header = (3:21580511).
    CHECKDB found 0 allocation errors and 6 consistency errors in table 'AllDocs' (object ID 53575229).
    Object ID 1058102810, index ID 4, partition ID 72057594052411392, alloc unit ID 72057594058571776 (type In-row data): Page (3:21580478) could not be processed.  See other errors for details.
    CHECKDB found 0 allocation errors and 4 consistency errors in table 'EventCache' (object ID 1058102810).
    Table error: Object ID 1762105318, index ID 1, partition ID 72057594055819264, alloc unit ID 72057594062897152 (type LOB data). The off-row data node at page (3:21985593), slot 35, text ID 5702751551488 is not referenced.
    Msg 8964, Level 16, State 1, Line 1
    Table error: Object ID 1762105318, index ID 1, partition ID 72057594055819264, alloc unit ID 72057594062897152 (type LOB data). The off-row data node at page (3:21985594), slot 14, text ID 5702751354880 is not referenced.
    Msg 8986, Level 16, State 1, Line 1
    Too many errors found (201) for object ID 1762105318. To see all error messages rerun the statement using "WITH ALL_ERRORMSGS".
    CHECKDB found 0 allocation errors and 307 consistency errors in table 'AuditData' (object ID 1762105318).
    CHECKDB found 0 allocation errors and 363 consistency errors in database 'ALCIM_WSS_Content'.
    repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (WSS_Content).
    Error show in the event log:
    SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 3:21580475; actual 0:0). It occurred during a read of page (3:21580475) in database ID 9 at offset 0x00002929576000 in file 'E:\Microsoft SQL Server\Data\MSSQL.1\MSSQL\DATA\WSS_Content_2.ndf'. 
    The last DB backup creatred was about a month ago so doing DB resotre will be my last choice. Is it possible I can recover the DB without data loss using "DBCC CHECKDB ('WSS_Content', REPAIR_REBUILD)"? Any alternative method to acheive my
    goal?
    Thank you.

    Hi,
    Check this part of the output that you have posted
    "repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (WSS_Content)."
    Which clearly states that your only option is "repair_allow_data_loss". This option should ONLY be tried as a last resort. If you have any chance of restoring the backup as Bass_player suggested that should be your way. Even if you run repair_allow_data_loss
    and it runs successfully and fixes the corruption, you still would be facing logical corruption with data, as we never know which all records repair_allow_data_loss removes.
    More over in case of SharePoint databases as far as I know, Microsoft Sharepoint Support never used to support those sharepoint databases which were repaired. They will only support a backup of the database in case of corruptions.
    I would suggest you to start working on a better disaster recovery plan in the mean while you are waiting for the backups :)
    HTH,
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.wordpress.com

  • How to recover from error message 13014

    I am having a problem with launching the itunes from my computer. I consistantly receive the error message 13014 with every attempt. Is there some way I can recover from this error short of wiping the computer clean?

    Repair Permission with Disk Utility.  See if it starts.
    If not, relocate Genius related files in your iTunes Library folder to another folder somewhere.  Test if it starts.

  • Recovering from "no cisco IOS image file" error

    I have a aironet1200 series access point, and attempted to update it to a newer IOS software release. However it never came back up after the update, and upon reboot the 3 status lights show red, green, red, which apparently means there is 'no cisco IOS image file'. Is there a way to recover from this error? It has a RJ45 style console port, can I use thi to recover?

    Got it sorted, managed to find the manual which goes through this in it's entirety!

  • Loading data from flatfile to relational table,i am getting SQLLDR error

    Hi,
    While loading data from flatfile to relational table,i am getting SQLLDR error and i am unable to proceed further.
    Source is a flatfile and target is a Oracle database,i used "LKM file to oracle(SQLLDR)" and "IKM sql control append"
    and ran the interface.When i checked the seesion in operator window" after generating "CTL file" successfully
    the session got failed at "Call sqlldr" and was not able to proceed further.
    Environment details:
    ODI 11g
    database:Oracle 11g
    Operating system:Windows server 2008
    The error message it displayed in call sqlldr session file was
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 31, in ?
    File "C:\oracle\product\11.1.1\Oracle_ODI_1\oracledi\client\odi\bin\..\..\jdev\extensions\oracle.odi.navigator\scripting\Lib\javaos.py", line 198, in system
    File "C:\oracle\product\11.1.1\Oracle_ODI_1\oracledi\client\odi\bin\..\..\jdev\extensions\oracle.odi.navigator\scripting\Lib\javaos.py", line 224, in execute
    OSError: (0, 'Failed to execute command ([\'sh\', \'-c\', \'sqlldr DEVELOPER/pass_123@CPRDEV control="F:\\\\flatfile/CROSS_CURR.ctl" log="F:\\\\flatfile/CROSS_CURR.log" > "F:\\\\flatfile/CROSS_CURR.out" \']): java.io.IOException: Cannot run program "sh": CreateProcess error=2, The system cannot find the file specified')
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:345)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:169)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2374)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java:1615)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java:1580)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2755)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:619)
    could u give me a solution to sort out this error ASAP.
    thanks,
    keshav.

    This was the following code generated .
    import java.lang.String
    import java.lang.Runtime as Runtime
    from jarray import array
    import java.io.File
    import os
    import re
    import javaos
    def reportnbrows():          
         f = open(r"F:\flatfile/TEST.log", 'r')
         try:
              for line in f.readlines():
                   if line.find("MAXIMUM ERROR COUNT EXCEEDED")>=0 :
                        raise line
         finally:
              f.close()
    ctlfile = r"""F:\flatfile/TEST.ctl"""
    logfile = r"""F:\flatfile/TEST.log"""
    outfile = r"""F:\flatfile/TEST.out"""
    oracle_sid=''
    if len('CPRDEV')>0: oracle_sid = '@'+'CPRDEV'
    loadcmd = r"""sqlldr DEVELOPER/<@=snpRef.getInfo("DEST_PASS") @>%s control="%s" log="%s" > "%s" """ % (oracle_sid,ctlfile, logfile, outfile)
    rc = os.system(loadcmd)
    if rc <> 0 and rc <> 2:
    raise "Load Error", "See %s for details" % logfile
    if rc==2:
    reportnbrows()

Maybe you are looking for