Viewing 15 posts - 1 through 15 (of 207 total)
Figured this out by running:
-- SQL Server NUMA node and cpu_id information
SELECT parent_node_id, scheduler_id, cpu_id, status
FROM sys.dm_os_schedulers WITH (NOLOCK)
WHERE [status] IN (N'VISIBLE ONLINE', N'VISIBLE OFFLINE')
ORDER BY parent_node_id,...
June 9, 2025 at 3:48 pm
i don't know if my post needs for info for an answer but i tried running the following. I would have thought the section where it says CPU = 0...
June 9, 2025 at 1:42 pm
I don't believe it is
when i run
select * from sys.dm_os_buffer_pool_extension_configuration
it is showing as Disabled
February 19, 2025 at 5:12 pm
Yeah, that is what I thought but I can't seem to see anything related to blocking - only CPU thresholds, IO alerts and few others. Looks like we will have...
May 15, 2024 at 8:11 pm
Thanks Sue.
So, confusingly, you have to set the option for schema changes to be disabled - then they get copied over in the fresh snapshot? Ok I will...
February 14, 2019 at 8:20 am
Yes - I was talking about the option you set in SQL server network properties in Config Manager.
Your thoughts actually reflect what I initially said when this was proposed,...
October 15, 2018 at 9:23 am
Have you considered Transactional Replication? If you know the tables you need to report from, you can just choose those tables to be involved in the replication.Any changes to the...
October 15, 2018 at 7:21 am
August 16, 2018 at 8:42 am
Hi
Thanks to everyone for their help and suggestions. I have managed to fix the issue. I simply moved the tempdb files (6 files plus the log) to a newly...
August 16, 2018 at 3:21 am
August 15, 2018 at 8:26 am
August 15, 2018 at 5:04 am
August 15, 2018 at 4:07 am
August 15, 2018 at 4:03 am
August 15, 2018 at 2:40 am
Viewing 15 posts - 1 through 15 (of 207 total)