Daily Coping 20 Oct 2022
Today’s coping tip is to avoid blaming yourself or others. Find a helpful way forward. I’ve been busy lately. My days are jammed up with a number of presentations...
2022-10-20
12 reads
Today’s coping tip is to avoid blaming yourself or others. Find a helpful way forward. I’ve been busy lately. My days are jammed up with a number of presentations...
2022-10-20
12 reads
2022-10-19
549 reads
Today’s coping tip is to take time to reflect on what you have accomplished recently. What have I done recently? Lots of stuff, but a couple things come out...
2022-10-19
4 reads
Meeting are work, even though we sometimes don't think of them as a productive part of our job.
2022-10-19
186 reads
I upgraded my primary laptop to Windows 11. A few people had said they liked it, I know that I needed to keep up at some point, and in...
2022-10-19
13 reads
There was an interesting question in a forum, which I wrote about before. How do you skip the leading digit in a numeric value. I had looked at a...
2022-10-18 (first published: 2022-10-17)
112 reads
2022-10-18 (first published: 2022-10-17)
477 reads
Today’s coping tip is to share an important goal with someone you trust. I’m not sharing an important goal here. Honestly, some of the things that are important to...
2022-10-18
14 reads
2022-10-18 (first published: 2022-10-14)
453 reads
Today’s coping tip is to make progress on a project or task you have been avoiding Most of the things I do for work are spent looking in the...
2022-10-17
5 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