Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

​sql database has a huge problem

Former Member
0 Kudos

I opened my sql database in SQL Server 2012 and got an error: SQL Server Table Corruption Error. Does someone know for recovery sql data?

  • SAP Managed Tags:
1 ACCEPTED SOLUTION

Former Member

When you work with sql database, all the data is copied to backup copy. Check it out. If you don’t have valid backup, then look at Recovery Toolbox for SQL Server, software supports even huge databases https://repairsql.recoverytoolbox.com/

  • SAP Managed Tags:
4 REPLIES 4

Former Member
0 Kudos

Guys, any assistance please!

  • SAP Managed Tags:

Former Member

When you work with sql database, all the data is copied to backup copy. Check it out. If you don’t have valid backup, then look at Recovery Toolbox for SQL Server, software supports even huge databases https://repairsql.recoverytoolbox.com/

  • SAP Managed Tags:

lbreddemann
Active Contributor
0 Kudos

You may want to check SAP note

1597910 - Handling of database corruptions on SQL Server

and blog https://blogs.msdn.microsoft.com/saponsqlserver/2013/10/30/corruption-handling-in-sap-databases/

  • SAP Managed Tags:

Former Member
0 Kudos

Have you tried the REPAIR_ALLOW_DATA_LOSS option with DBCC CHECKTABLE? If you have a current backup, I would restore the database to a NEW db, then run DBCC CHECKTABLE with REPIAR_ALLOW_DATA_LOSS on the corrupted table, and compare the old and new tables to see if anything is missing. if it fails to recover, then you can try SQL Server Table Repair Tool to fix Table Corruption Error.

  • SAP Managed Tags: