Hardware: Check the Drivers First
This isn’t a database post, instead, I’m going to talk about my laptop. I got an HP Spectre x360 a couple years ago and was using it for work...
2021-02-05
20 reads
This isn’t a database post, instead, I’m going to talk about my laptop. I got an HP Spectre x360 a couple years ago and was using it for work...
2021-02-05
20 reads
Steve ran across a list of interview questions and wonders if it's a good test for an experienced database developer.
2021-02-05
377 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2021-02-04
12 reads
Building better software requires some experimentation, but also some learning. Building better software as an organization requires even more.
2021-02-04
302 reads
2021-02-04
730 reads
In your work, are you an artist or a scientist? Steve Jones knows we need to be both, but when is each appropriate?
2021-02-03 (first published: 2014-08-19)
398 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2021-02-03
16 reads
2021-02-03
350 reads
The slow pace of Visual Studio development had a number of problems over the years, but Microsoft has dramatically changed the way they build their software for the better.
2021-02-02 (first published: 2014-08-21)
317 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2021-02-02
8 reads
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
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