I need to disable remote access in my server. I am running following query to make that change so that config_value and run_value columns in sp_configure result set should get updated.
EXEC sp_configure
'remote access', 0
RECONFIGURE
GO
But after running this query, config_value column gets changed. But run_value column does not get changed.
Please help me with this issue.
Harry