During the installation process of Trados GroupShare, the installer fails with the error:
Database operation failed
The installation log provides a more detailed error message:
Job '[JOB NAME]' started successfully.
.Net SqlClient Data Provider: Msg 5061 Level 16, State 1, Line 5 ALTER DATABASE failed because a lock could not be placed on database '[DATABASE NAME]'. Try again later.
Script execution error. The executed script:
IF EXISTS (SELECT 1
FROM [master],[dbo].[sysdatabases]
WHERE [name] = N'$(DatabaseName)')
BEGIN
ALTER DATABASE [$(DatabaseName)]
SET FILESTREAM(NON_TRANSACTED_ACCESS = OFF)
CONTAINMENT = NONE
WITH ROLLBACK IMMEDIATE;
END