Networking - Part 6
You can read the previous posts here. To finish up (I think), I want to share a networking technique I...
2009-02-18
708 reads
You can read the previous posts here. To finish up (I think), I want to share a networking technique I...
2009-02-18
708 reads
Many of us in IT are competitive, maybe slightly more so than in other professions. Competition adds a little spice...
2009-02-17
1,493 reads
You may want to read Part 1 , Part 2 , and Part 3 before continuing. This time around I'd like to talk about social networking. We'll start with social networking. Facebook, MySpace, and Twitter are all good examples of using technology to let...
2009-02-17
1,530 reads
I've always enjoyed the science fiction writings of Gordon Dickson, and recently re-read an old copy of The Human Edge,...
2009-02-16
846 reads
You can read the previous posts here. To finish up my thoughts on networking I want to brain storm some...
2009-02-15
627 reads
Last week I posted Speaking at Community Events - Time to Raise the Bar?, a first cut at talking about to what degree we should require experience for speakers at events like SQLSaturday as well as when it might be appropriate to add additional focus/limitations on the presentations that are accepted. I've got a few more thoughts on the topic this week, and I look forward to your comments.
2009-02-13
360 reads
I think we've all seen and heard about Flight 1549 doing the emergency landing on the Hudson River. Truly a...
2009-02-12
565 reads
You may want to read Part 1, Part 2, and Part 3 before continuing. This time around I'd like to...
2009-02-11
547 reads
Scott Klein invited me to speak to his group in West Palm Beach, so I'll be going down on May...
2009-02-11
490 reads
A short post today. For a while I've been subscribing to the Word of the Day from Merriam-Webster (free) and...
2009-02-11
617 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