InterviewSolution
Saved Bookmarks
| 1. |
Can we add an article to the existing publication without generating a snapshot with all articles? |
|
Answer» We can check the current settings and thread allocation USING the below queries.
select max_workers_count from sys.dm_os_sys_info.
select count(*) from sys.dm_os_threads.
Increasing the number of worker threads MAY actually DECREASE the performance because too many threads cause context switching which could take so much of the resources that the OS starts to DEGRADE in overall performance. |
|