Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/12/2011, 19:16
jiacevedo
 
Fecha de Ingreso: octubre-2008
Mensajes: 23
Antigüedad: 15 años, 5 meses
Puntos: 0
Respuesta: Restaurar archivo .mdf dañado

aqui algyunos querys que utilice
USE master
GO
EXEC SP_CONFIGURE 'Allow updates', 1
GO
RECONFIGURE WITH OVERRIDE
GO

UPDATE sysdatabases
SET status = status | -32768
WHERE name='GuilleSQL'
GO

EXEC SP_CONFIGURE 'Allow updates', 0
GO
RECONFIGURE WITH OVERRIDE
GO