Live versus Stored Data
Is it always important to have the most current data? Steve notes that you might need to make a decision here.
2021-01-26
139 reads
Is it always important to have the most current data? Steve notes that you might need to make a decision here.
2021-01-26
139 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
Changes in data privacy law in California are demanded by consumers.
2021-01-23
72 reads
Learning to be a better database developer can be hard. Today Steve asks how you might suggest someone learn.
2021-01-22
271 reads
Today Steve Jones gives you ideas on how to keep learning and growing your career.
2021-01-20 (first published: 2018-01-19)
305 reads
2021-01-19 (first published: 2018-01-23)
349 reads
Using default credentials is a poor practice, but people still continue to forget to change them.
2021-01-18
316 reads
My final job in my previous career was at a hospital. I worked there for five years in the 90s before getting my first position as a developer. While I didn’t love the career I was leaving, I did appreciate what I learned from that last job. Part of the onboarding included a short class […]
2021-01-16
130 reads
Availability Groups are a good way to use High Availability in SQL Server, Today Steve wonders if you have any improvements you would make to the technology.
2021-01-15
154 reads
Microsoft fights back against hackers after a recent vulnerability in a management framework.
2021-01-14
222 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp:0817-866-887 Area Street Festival, Ruko No 1 & 1A, CBD, Jl. Galuh Mas Raya,...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
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