2016-04-14
1,241 reads
2016-04-14
1,241 reads
2016-04-13
1,204 reads
2016-04-13
1,194 reads
2016-04-12
124 reads
This month is an interesting, but tough topic. The blog party is hosted by Jens Vestergaard, and his invitation is...
2016-04-12
742 reads
Steve Jones looks at the idea of cataloging our data sets in order to make it easier for
2016-04-11
330 reads
2016-04-11
1,345 reads
You can win a free conference pass to SQL Bits, in Liverpool, May 4-7. It’s easy, just post a review...
2016-04-08
564 reads
2016-04-08
1,188 reads
I had never seen this, but I ran across a blog that mentioned an MDF File password here. The post...
2016-04-07
609 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