Every IT Organization is a Snowflake
Some people think every IT department is unique. While that might be literally true, Steve doesn't think that is actually the case.
2021-03-17
215 reads
Some people think every IT department is unique. While that might be literally true, Steve doesn't think that is actually the case.
2021-03-17
215 reads
Microsoft is working on the future of work, and adapting to remote work. Steve isn't sure this will work, but they have at least one interesting technology idea he likes.
2021-03-01
128 reads
With the new year proceeding along, we are still in a pandemic. Is that affecting your work load?
2021-02-12
129 reads
Many people don't feel like they can make changes in their work environment. Today Steve notes this is common in many organizations.
2021-01-25
108 reads
Today Steve wonders about the move back to offices and if you are looking forward to it or trying to avoid it.
2021-01-04
136 reads
Retaining staff is always a challenge for many organizations. Today Steve talks about the difficulties of doing so and in choosing who to retain.
2020-09-29
152 reads
Today Steve wonders if companies ought to support remote work better with other benefits.
2020-09-11
203 reads
2020-08-17
126 reads
2020-08-12
262 reads
Today Steve looks at one possible future of offices, which might be something we own.
2020-07-20
173 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