2025-06-27
93 reads
2025-06-27
93 reads
2025-01-01
71 reads
2024-12-25
80 reads
2024-11-27
90 reads
2024-09-02
52 reads
2024-07-05
140 reads
2024-04-12
135 reads
Today is a day off from Redgate for Steve, but he's working elsewhere on this holiday.
2024-02-19
86 reads
Happy New Year from Steve, with a reminder to work on your career plan for 2024.
2024-01-01
77 reads
2023-12-25
49 reads
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...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
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