Viewing 15 posts - 31 through 45 (of 965 total)
Post the results of the following two queries from BOTH servers for each instance:
select name, value, value_in_use
from sys.configurations
where name = 'affinity mask';
select
dos.scheduler_id,
dos.cpu_id,
dos.is_online,
don.cpu_affinity_mask,
don.online_scheduler_count,
don.online_scheduler_mask,
don.memory_node_id
from sys.dm_os_schedulers as dos
inner join sys.dm_os_nodes as...
March 15, 2013 at 2:42 pm
cryovenom (3/15/2013)
This may sound like a rather basic question, but what do you mean by "you've mixed NUMA nodes in your settings"? Can two instances not use cores in the...
March 15, 2013 at 2:12 pm
My guess without being able to query the system is that you've mixed NUMA nodes in your settings. The AMD 6212 would have been my last choice for a...
March 15, 2013 at 1:39 pm
Grant Fritchey (3/13/2013)
SQLKnowItAll (3/13/2013)
When is the book coming out Grant? I am going to be one of the first buyers...
Ha! Don't hold your breath. I still haven't received the...
March 15, 2013 at 9:46 am
Grant Fritchey (3/13/2013)
March 15, 2013 at 9:44 am
colin.Leversuch-Roberts (1/6/2011)
There's some things you could try: disable parallelism,...
March 3, 2013 at 11:31 pm
You should be able to query the Memory Broker notifications and see which Broker triggered the memory notification:
SELECT
EventTime,
n.value('(Pool)[1]', 'int') AS [Pool],
...
November 29, 2012 at 6:11 pm
I am pretty certain that this is the same bug reported by Aaron Bertrand here:
November 24, 2012 at 8:30 pm
Hey John,
It's an easy mistake to make, but I bet it will never happen again. Ask me how I know this, I made a very similar mistake 4-5 years...
November 10, 2012 at 10:16 pm
BTW:
You also need to CAST the @Success variable to VARCHAR in you concatenation code for the email body:
+ char(10) + 'Success'+CAST(@Success AS VARCHAR)
November 10, 2012 at 8:28 pm
Your activation stored procedure is the problem. Before you configured the queue for activation did you test the procedure by executing it? I am going to bet not...
November 10, 2012 at 7:26 pm
Send me the scripts for the Queue, Service, Event Notification, and Activation Procedure by email through my blog. Let me know what specific version of SQL Server you are...
November 10, 2012 at 5:26 pm
John Esraelo-498130 (11/10/2012)
Before I ask a question I wanted to say that I really like your articles, especially in the events area.
Here is the question:
I have create a queue...
November 10, 2012 at 2:22 pm
jvkondapalli (11/7/2012)
In our OLTp systems, we have a job which will capture queries running more than 1 min and report to us. The job runs every 1 minute through...
November 7, 2012 at 1:39 pm
jvkondapalli (11/5/2012)
We have APP1, APP2. When I create Windows Server Failover...
November 5, 2012 at 5:36 am
Viewing 15 posts - 31 through 45 (of 965 total)