Last Call SQLRally Call for Presenters
Go SQL! Go SQL! It’s the last day and the last chance (last dance?) to submit a session for the...
2010-12-15
700 reads
Go SQL! Go SQL! It’s the last day and the last chance (last dance?) to submit a session for the...
2010-12-15
700 reads
Onion Ring Buffer?
A client asked a co-worker to take a look at a query for reviewing RING_BUFFER_OOM messages in sys.dm_os_ring_buffers. ...
2010-12-15
1,347 reads
She can dig it!
D Sharon PruittWhen I started using XQuery to dig into the plan cache, it was just searching...
2010-12-14
2,764 reads
Getting SQL Server for
Christmas! Happy holidays and seasons greetings!
Don’t forget, PASSMN meeting is today. As I’ve said before,...
2010-12-14
693 reads
Sharon PruittIn the lead in to this post, I talked about how the plan cache can...
2010-12-14
938 reads
Watching videos?! Su-ure!
If you’re reading this, it must be Monday morning. Oh dear, that means I am officially starting my...
2010-12-13
512 reads
Getting SQL Server for
Christmas! Happy holidays and seasons greetings!
Let PASSMN put a little SQL and PowerShell in your...
2010-12-12
625 reads
Cracked Up
If you’ve been trying to come to the blog lately, you may have noticed a few errors connecting. Resources...
2010-12-10
318 reads
It’s a map!Have you been looking for something inside the system views of SQL Server 2007 R2 and haven’t known...
2010-12-10
450 reads
She can dig it!
D Sharon PruittIn the lead in to this post, I talked about how the plan cache can...
2010-12-09
6,247 reads
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers