SQL RNNR

Blog Post

Arggghhhhh

I have a new tune stuck in my head now.  It got stuck there this afternoon shortly after my computer...

2011-06-30

1,631 reads

Blog Post

Arggghhhhh

I have a new tune stuck in my head now.  It got stuck there this afternoon shortly after my computer was forced into a reboot.  I was in the...

2011-06-30

3 reads

Blog Post

70-450 Study Guide

In my last post concerning my certification journey I said I may post a study guide.  I have thought it over and a sweetened condensed version of some of...

2011-06-30

2 reads

Blog Post

MCITP: 3 Down 1 To Go

Despite my desire to do one exam a week in pursuit of the MCITP Certifications for DBA and Developer in SQL 2008, other things came up that have slowed...

2011-06-27

Blogs

Solving SQL Server Mysteries with a Whole Gang of Sleuths -Scooby Dooing Episode 4

By

One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...

SQL Server Availability Groups

By

Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...

Modify Power BI page visibility and active status with Semantic Link Labs

By

Setting page visibility and the active page are often overlooked last steps when publishing...

Read the latest Blogs

Forums

Password Guidance

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Password Guidance

Using table variables in T-SQL

By Alessandro Mortola

Comments posted to this topic are about the item Using table variables in T-SQL

Azure elastic query credential question

By cphite

I am trying to check out elastic query between two test instances we have...

Visit the forum

Question of the Day

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