Redgate Source Control commit changes throws trace filename exception

StackOverflow https://stackoverflow.com/questions/19399595

  •  30-06-2022
  •  | 
  •  

Вопрос

Whenever I try to commit changes to source control I get this error message. Trace file name '' is invalid. The statement has been terminated.

enter image description here

Это было полезно?

Решение

Try disabling and re-enabling the default trace.

EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'default trace enabled', 0;
GO
RECONFIGURE;
GO
EXEC sp_configure 'show advanced options', 0;
GO
RECONFIGURE;
GO

EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'default trace enabled', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'show advanced options', 0;
GO
RECONFIGURE;
GO
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top