Learning from Microsoft
Microsoft has changed their engineering to do amazing things in the cloud, especially with SQL Server. We could all learn from this.
2016-03-01
265 reads
Microsoft has changed their engineering to do amazing things in the cloud, especially with SQL Server. We could all learn from this.
2016-03-01
265 reads
2016-03-01
1,251 reads
How we implement algorithms can change the way the world works with our software. Steve Jones wonders if we should be disclosing the algorithms themselves.
2016-02-29
162 reads
A short one, but I found myself wasting time recently. I use an Excel sheet to schedule some items out...
2016-02-26 (first published: 2016-02-22)
1,912 reads
2016-02-26
149 reads
A list of data sets you can download and play with for practice, demos, or your own analysis.
2016-02-26
7,283 reads
I started using a standing desk a few years back. While visiting the Redgate Software office, I saw one of...
2016-02-26
1,973 reads
2016-02-26
1,590 reads
2016-02-25
165 reads
2016-02-25
1,266 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