I'm trying to optimize an SQL Server stored procedure by using OPTION (MAXDOP 1)
and this way avoid parallelism on the execution plan, but my question is, it is safe to use?
I have read it might cause some bugs on the result, and on other websites they say it is not recommended, so my question is? it is safe to use?
There are another ways to avoid parallelism without using OPTION (MAXDOP n)
?
Thanks