Sharepoint Exception from HRESULT: 0x80041050

Hoy tuvimos un el error "Exception from HRESULT: 0x80041050" en nuestro entorno de test, la solucion la encontramos en esta pagina, paso a resumir los pasos realizados:

- abrir la consola de SQL (SQL Server Management Studio )
- sobre la base de contenidos de la aplicacion que da error ejecutar la siguiente Query:

select *
from AllDocs
where (VirusStatus > 0) and (VirusStatus is not null)

- Si obtenemos algun resultado, ahi esta el problema!, debemos ejecutar:

update AllDocs
set VirusStatus = null
where (VirusStatus > 0) and (VirusStatus is not null)

Listo, problema solucionado.

No hay comentarios:

Publicar un comentario