Carrier Pigeon Beat Local Telcom
It’s not often that we find stories that make us laugh out loud, unless they have to do with situations...
2010-02-20
242 reads
It’s not often that we find stories that make us laugh out loud, unless they have to do with situations...
2010-02-20
242 reads
We have a lot of projects in our organizations that require us to work with database systems other than SQL...
2010-02-20
4,501 reads
We have a lot of projects in our organizations that require us to work with database systems other than SQL...
2010-02-20
1,516 reads
More awesome happenings from Pragmatic Works, Wrox, and SQLServerCentral.com. Check out our Upcoming Webinar Series next week. They are free,...
2010-02-20
247 reads
Hey All ! I wanted to let you know I will be speaking at the SSWUG Virtual Conference this Spring. This...
2010-02-20
206 reads
When configuring a SSAS Dimension, there are many important properties to pay attention to. This blog will give you a...
2010-02-20
435 reads
Ever wanted to liven up your life some with some color in your day to day DBA duties. There are...
2010-02-20
248 reads
There are several ways for calculating “To-Date” calculations the longer way. These normally include a more granular level of control...
2010-02-20
597 reads
There are lots of ways to calculate time comparisons in MDX, but there are some great shortcuts. The functions WTD,...
2010-02-20
281 reads
Oftentimes you need to make a more advanced join that the default LookUp Transform will allow. The challenge is when...
2010-02-20
348 reads
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...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
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