May 25, 2018 at 8:12 am
I ran below TSQL to stop remote connections,
EXEC sp_configure 'show advanced',1
go
RECONFIGURE
go
EXEC sp_configure 'remote access', 0
go
RECONFIGURE WITH OVERRIDE
I ran below SQL to see the changes, the value_in_use column is not changes to 0 it still showing 1, I restarted SQL services after running sp_configure, can some one help me why its not changing the value.
SELECT name,
CAST(value as int) as value_configured,
CAST(value_in_use as int) as value_in_use
FROM sys.configurations
WHERE name = 'Remote access';
Thanks
May 29, 2018 at 5:42 pm
G Sunny - Friday, May 25, 2018 8:12 AMI ran below TSQL to stop remote connections,EXEC sp_configure 'show advanced',1
go
RECONFIGURE
go
EXEC sp_configure 'remote access', 0
go
RECONFIGURE WITH OVERRIDEI ran below SQL to see the changes, the value_in_use column is not changes to 0 it still showing 1, I restarted SQL services after running sp_configure, can some one help me why its not changing the value.
SELECT name,
CAST(value as int) as value_configured,
CAST(value_in_use as int) as value_in_use
FROM sys.configurations
WHERE name = 'Remote access';Thanks
Is it showing as 0 for configured and 1 in use? If not and both are 1, try rerunning your sp_configure scripts and check the values in sys.configurations to make sure it's showing 0 configured and 1 in use. And then restart.
Did you verify the instance was restarted and check for any errors in the log? That change does require a restart of SQL Server but it should have changed after the restart.
Sue
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply