SQL RNNR

Blog Post

June S3OLV Update

This is a real quick update.  It has been requested that we go ahead and provide LiveMeeting for tonight as well.  Thus Charley will be presenting in person but...

2011-06-09

Blog Post

June 2011 S3OLV Meeting

It’s Grillin’ Time OK, so we won’t be grilling inside the meeting – or even at the meeting.  But it sure sounds good.  There will likely be Pizza and...

2011-06-06

Blog Post

MCITP: 2 Down 2 to go

It’s time for the weekly update.  Much like last week, we had more issues with taking this exam today.  I scheduled exam 70-433 for first thing in the morning...

2011-05-26

2 reads

Blog Post

CTE, Recursion and Math

Earlier this month we had a TSQL Tuesday on the topic of CTEs.  I bailed on my submission because I already posted some CTE examples and was bone dry...

2011-05-23

9 reads

Blogs

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...

T-SQL Tuesday #190–Mastering a New Technical Skill

By

It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...

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