PreCon–SQL Saturday Tampa
I recently had a great opportunity to present a preconference all day event in Tampa with the crew from the...
2011-11-09
719 reads
I recently had a great opportunity to present a preconference all day event in Tampa with the crew from the...
2011-11-09
719 reads
So last year in improved transparency move, the board and the nomination committee began posting the questions the noncom asked...
2011-10-14
849 reads
Wow, what an event. I had to run to Redmond right after this so I am sorry this post is...
2011-10-06
810 reads
The other day, someone said to me ?You guys are growing like a weed? Now it was a competitor, so...
2011-10-04
1,026 reads
It?s never easy to beat up on a friend. Sometimes they have it coming though!.
The Webinar smackdown is over....
2011-10-03
772 reads
Quick update for all of you!
Hey there everyone! We are going to have some awesome surprises, new software features...
2011-09-30
1,561 reads
So I am really close to Atlanta geographically, but I?m never there. I?m going to change that after this SQL...
2011-09-30
1,565 reads
Many of you know recently the PASS board announced that elections will be coming up for three seats on the...
2011-09-30
2,609 reads
Weekday Lunch RAW!
Welcome to the Smack-down ladies and gentleman. I couldn?t believe it when Brian walked into my office the...
2011-08-31
1,794 reads
That title may evoke thoughts of inappropriate SQL Karaoke or perhaps not but It is so nice to know I’m...
2011-06-18
861 reads
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...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
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