Hi,
Question 1:
If we see config_value and run_value are different for 'max degree of parallelism', then the question is, whether SQL Server will use the value of
'config_value' or 'run_value' while running the queries?
Per the MSDN link, https://technet.microsoft.com/en-us/library/ms188787(v=sql.105).aspx
it looks like the it should be "run_value" which is being used to run the queries.
And the reason why the values (config vs run) are different, because the DBA missed to run : RECONFIGURE WITH OVERRIDE;
Question 2:
Is there any trouble, having two different values?