My event schedule for Fall 2013
As I was browsing my calendar of upcoming events for the remainder of the summer and the fall, I realized...
2013-08-16
806 reads
As I was browsing my calendar of upcoming events for the remainder of the summer and the fall, I realized...
2013-08-16
806 reads
When it comes to ETL, I’m a pessimist. Until proven otherwise, I assume that all data is bad, all connections...
2013-08-05
1,952 reads
Through the course of my career, I’ve spent time on both sides of the job interview table, which has given...
2013-08-02
770 reads
I love music. In fact, I like to think that I’m a student of music – although anyone who has heard...
2013-06-21
1,005 reads
I’m happy to announce that I’ll be delivering three, one-day preconference seminars this summer prior to three different SQL Saturday...
2013-06-07
914 reads
In the first post in this series, I covered the basics of object typed variables in SQL Server Integration Services,...
2013-05-28
1,866 reads
This is a temporary post that was not deleted. Please delete this manually. (e621c360-788f-48aa-bd56-670930569ab5 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2013-05-25
773 reads
I’m happy to announce that I have been selected to present
at the SQL PASS Summit in Charlotte, North Carolina this...
2013-05-22
676 reads
Tomorrow at 10am (11am EDT), I’ll be joining together with my good friend and SSIS Design Patterns coauthor Andy Leonard...
2013-05-07
854 reads
I’m happy to announce that I’ll be doing a tour of the 4 SQL Server user groups in central Colorado...
2013-03-11
682 reads
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
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