PASS Summit 2015 Presentations
I am proud to be offering several training opportunities at the upcoming PASS Summit in Seattle, WA during the week...
2015-10-16
584 reads
I am proud to be offering several training opportunities at the upcoming PASS Summit in Seattle, WA during the week...
2015-10-16
584 reads
Have you ever wondered if that black box in your datacenter called the network is performing as well as it...
2015-10-13
884 reads
I am very pleased to announce that Argenis Fernandez, (now including)Jimmy May, and I will be presenting a new precon...
2015-09-16
556 reads
A while back, my friend Mike Fal ( b | t ) released a PowerShell script that can sample the counter inside SQL...
2015-09-24 (first published: 2015-09-13)
2,394 reads
Next week is the wonderful IT/Dev Connections conference in Las Vegas, and I’m proud to announce that I’m presenting two...
2015-09-10
465 reads
If you are one of the lucky ones who gets to attend VMworld USA this year, and you have any...
2015-08-26
616 reads
Next Wednesday, August 19th, at noon Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session...
2015-08-12
512 reads
Omaha’s next SQL Saturday event is going to be held on August 15th at the University of Nebraska – Omaha’sMammel Hall...
2015-07-22
617 reads
I am very pleased to announce that Argenis Fernandez and I will be presenting a new precon training session at...
2015-07-10
538 reads
I recently recorded a podcast with the SQL Server Radio group and discussed virtualization, high availability, and independent consulting topics. I...
2015-06-29
976 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