24 Hours of PASS Deck and Demo's Live!
Hello Dear Reader! Another very quick blog. Thank you to all of the people that tuned in to see me...
2013-07-31
1,147 reads
Hello Dear Reader! Another very quick blog. Thank you to all of the people that tuned in to see me...
2013-07-31
1,147 reads
Hello Dear Reader! This is just a very quick blog to let you know that the 24 Hour's of PASS...
2013-07-31
1,336 reads
Hello Dear Reader! This week finds me up in Jacksonville at Pragmatic Works HQ. I'm a little behind in getting...
2013-07-30
1,715 reads
Hello Dear Reader. Quick blog today. If you are working in the SQL Server world eventually you will try to...
2013-07-26
1,030 reads
Hello Dear Reader, what a busy week we’ve had last week! I’ve got 3 big Thank You’s that I would...
2013-07-18 (first published: 2013-07-15)
1,958 reads
Hello Dear Reader! Just a quick blog post today. The Schedule for SQL Saturday 232 is now live! You probably...
2013-07-16
547 reads
Hello Dear Reader! Welcome to my blog on T-SQL Tuesday #44 Second Chances. I’m hosting this month, and we are...
2013-07-09
1,695 reads
Hello Dear Reader! I just wanted to write to Thank All of you for the submissions to SQL Saturday 232...
2013-07-05
761 reads
Hello Dear Reader! This is the first Tuesday of the month and you know what that means. It’s time to...
2013-07-02
2,288 reads
Hello Dear Reader! This post finds me back in Boston getting ready for the Pragmatic Works Performance Tuning Workshop. But...
2013-06-11
1,041 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...
i have subscription of github copilot which i can access in vs 2022 comunity...
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
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