sql >> Database >  >> RDS >> Sqlserver

Bijgewerkte gegevens herstellen - SQL Server 2005

Hallo AngelIII, SQL-server houdt een logboek bij voor elke transactie. U kunt dus ook uw gewijzigde gegevens uit het logboek herstellen zonder back-up.

Select [PAGE ID],[Slot ID],[AllocUnitId],[Transaction ID] ,[RowLog Contents 0]
, [RowLog Contents 1],[RowLog Contents 3],[RowLog Contents 4] ,[Log Record]
FROM    sys.fn_dblog(NULL, NULL)   
WHERE AllocUnitId IN 
(Select [Allocation_unit_id] from sys.allocation_units allocunits 
INNER JOIN sys.partitions partitions ON (allocunits.type IN (1, 3)   
AND partitions.hobt_id = allocunits.container_id) 
OR (allocunits.type = 2 AND partitions.partition_id = allocunits.container_id)   
Where object_id=object_ID('' + 'dbo.student' + '')) 
AND Operation in ('LOP_MODIFY_ROW','LOP_MODIFY_COLUMNS')  
And [Context] IN   ('LCX_HEAP','LCX_CLUSTERED') 

Hier is het artikel, dat stap voor stap uitlegt hoe het moet. http://raresql.com/2012/02/01/how-to-recover-modified-records-from-sql-server-part-1/



  1. Probleem bij het opslaan van gegevens in de database in php

  2. mysql:verwijder rijen met herhaalde waarden met voorwaarde (herhaalde kolommen)

  3. In Oracle AS werkt de alias niet

  4. NodeJS–Array van string toevoegen in PostgreSQL-query