Knowing Your Total Reward
When you agree to work for a company, you should understand all your compensation.
2024-10-25
170 reads
When you agree to work for a company, you should understand all your compensation.
2024-10-25
170 reads
Steve has a quick turnaround between trips that was a bit unexpected. Is there compensation for this?
2024-07-29
158 reads
2024-05-31
170 reads
How many monitors do you need? Steve notes that having multiple ones seems to be a standard these days for tech workers. Do more make you more productive? Answer the poll today.
2024-05-10
197 reads
Today Steve asks about on-call responsibility for you and how you view this as part of your job, or in your job search.
2024-05-03
159 reads
Steve talks about being back in an office today, at a customer where everyone comes in every day.
2024-04-17
174 reads
There is new legislation in Australia that is supposed to allow employees to ignore messages outside of working hours. Steve has a few thoughts on how he balances his workload.
2024-03-18
207 reads
At Redgate, the teams change every year and Steve has a few reasons why this is good.
2024-02-12
190 reads
Do you enjoy your workplace or employer? Steve does and has a few thoughts on what that is like for him.
2024-01-26
168 reads
A busy year got a little too busy for Steve and he is taking steps to improve his work life balance.
2023-10-20
168 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers