On Perspective
Perspective can make or break a career. Maintaining a proper perspective is very often the differentiating factor between a good...
2014-12-10 (first published: 2014-12-03)
5,648 reads
Perspective can make or break a career. Maintaining a proper perspective is very often the differentiating factor between a good...
2014-12-10 (first published: 2014-12-03)
5,648 reads
This is the third in a series of posts about SSIS parent-child architecture. You can find the index page here.
In...
2014-12-05 (first published: 2014-12-01)
7,322 reads
It’s an odd query, yes, but in preparation to write this post I actually typed the above phrase into my...
2014-11-26
1,248 reads
I’m excited to announce that my Linchpin People colleague Reeves Smith and I will be delivering a full day Biml...
2014-11-11
606 reads
Today is the last official day of the PASS Summit. The sessions will wrap up at the end of the...
2014-11-08
840 reads
The last two days have been an absolute blur. As I first posted this week, I had planned to blog...
2014-11-07
810 reads
It’s another beautiful day in Seattle. And by beautiful, I mean overcast and threatening rain. Today will be mostly consumed...
2014-11-04
764 reads
Today is the first day of official activities for the week. The PASS Summit hasn’t yet started, but I’ll be...
2014-11-03
753 reads
This week, I’m attending two different summit events in the Seattle area. On Sunday through Tuesday, I’ll be participating in...
2014-11-02
745 reads
As I write this, I’m airborne and on my way to Seattle for the summit week (the Microsoft MVP Summit,...
2014-11-01
947 reads
Understanding how permissions work in Microsoft Fabric can be essential for anyone managing access...
By Kevin3NF
Does skipping a DBA save money? Wait until your system grinds to a halt,...
By Brian Kelley
I admit that until I read the article, Who are you as a Leader?,...
Hi folks I have two tables, both with a NAME, START and END fields...
I am in the process of migrating from MySQL to SQL Server. I have...
I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...
What is returned from this code in SQL Server 2022?
DECLARE @value INT = NULL , @value2 VARCHAR(20) = NULL; SELECT COALESCE (@value, @value2, 100.5) AS Result; GOSee possible answers