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.

  • Thread setting

select max_workers_count from sys.dm_os_sys_info.

  • Active threads

select count(*) from sys.dm_os_threads.

  •  The default VALUE is 255.

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.



Discussion

No Comment Found