Your Data After Life
Today Steve thinks about what to do when planning for your digital assets after you pass.
2020-07-17
369 reads
Today Steve thinks about what to do when planning for your digital assets after you pass.
2020-07-17
369 reads
When we need to delegate work to less privileged users, Steve has an idea.
2020-07-16
198 reads
2020-07-15
179 reads
2020-07-14
122 reads
Can you run a system better than cloud vendors? You should know and be able to prove it.
2020-07-13
140 reads
I always look forward to new T-SQL features and optimizer enhancements with every new version of SQL Server. Starting in 2017, Microsoft came up with a set of features called Intelligent Query Processing (IQP). These features work to improve performance without changing any code. If you’d like to learn more about these features, take a […]
2020-07-11
821 reads
Today Steve looks at an article the migrates a relational model to CosmosDB.
2020-07-10
707 reads
2020-07-09
106 reads
Intel is building hybrid processors, combining the power of the regular CPUs most of us use with Atom power saving technology.
2020-07-08
125 reads
2020-07-07
747 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...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
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