SharePoint - Cannot complete this operation. Contact administrator

When I try to save something to my list in SharePoint, I get the following error:

Unable to complete this operation.  Please contact your administrator.
    at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String   bstrWebRelativeUrl, Object varFile, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage) 
    at Microsoft.SharePoint.Library.SPRequest.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object varFile, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage) 

A quick google ad says this could be a problem with the disk space in the database. I checked my server and the least free space on any of the drives is ~ 4 GB. File size - 1 MB. I checked the database and the data file is on unlimited growth.

Any ideas?

+3
source share
1 answer

The problem was that the transaction log was completely prevented. The data file was right.

+3
source

Source: https://habr.com/ru/post/1735907/


All Articles