PASS Summit 2013 Deck and Demos Live
Ready to rock some Internals.Hello Dear Reader! This is just a quick blog to say that my Deck and Demo's...
2013-10-18
806 reads
Ready to rock some Internals.Hello Dear Reader! This is just a quick blog to say that my Deck and Demo's...
2013-10-18
806 reads
Okay Dear Reader one more time let me say that if you are interested in Hekaton In-Memory OLTP Then you...
2013-10-17
1,034 reads
Final thoughts Dear Reader. This is a big launch year for Microsoft and we are getting some very cool toys...
2013-10-16
708 reads
Hello Dear Reader! Just a quick blog today. The Deck and Demo’s for my Presentations today at SQL DevConnections are...
2013-10-02
518 reads
Hello Dear Reader! We are finishing up the final day of the Performance Tuning Workshop here in Atlanta and I...
2013-09-26 (first published: 2013-09-24)
7,499 reads
Hello Dear Reader! This year Pragmatic Works has brought our Performance Tuning Workshop to Chicago, Boston, and Atlanta. Due to...
2013-09-26
528 reads
I could hear SQL saying to my C: Drive "Why You Little...." Hello Dear Reader!
The Blog about SQL Saturday 232 coming...
2013-09-17
1,091 reads
Hello Dear Reader! This is the second Tuesday of the month and you know what that means, T-SQL Tuesday the...
2013-09-12 (first published: 2013-09-10)
1,752 reads
http://bit.ly/16UyEPHHello Dear Reader. Almost two weeks ago I delivered a presentation for the 24 Hours of PASS on SQL Server...
2013-08-16
937 reads
Hello Dear Reader! I got a lot of great questions during the 24 Hours of PASS last week and I'm...
2013-08-09
822 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
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