Ошибка при создании Фермы
The configuration option 'min server memory' does not exist, or it may be an advanced option. The affinity mask specified conflicts with th IO affinity mask specified. Use the override to force this configuration. Configuration option 'min server memory (MB)' changed from 0 to 128
Решение под катом
exec
sp_configure
'show advanced options', 1;
GO
RECONFIGURE
WITH
OVERRIDE;
GO
sp_configure
'allow updates', 0;
GO
RECONFIGURE
WITH
OVERRIDE;
GO
И с памятью (Менять от 0 к 128)
exec
sp_configure
'min server memory', 128;
GO
RECONFIGURE
WITH
OVERRIDE;
Решение под катом
exec
sp_configure
'show advanced options', 1;
GO
RECONFIGURE
WITH
OVERRIDE;
GO
sp_configure
'allow updates', 0;
GO
RECONFIGURE
WITH
OVERRIDE;
GO
И с памятью (Менять от 0 к 128)
exec
sp_configure
'min server memory', 128;
GO
RECONFIGURE
WITH
OVERRIDE;
Комментарии
Отправить комментарий