2018-05-01
869 reads
2018-05-01
869 reads
2018-04-30
66 reads
We don't mean to introduce security issues, but sometimes we do because we give in to pressure.
2018-04-30
52 reads
2018-04-30
705 reads
There’s a new feature in Azure, and I stumbled on it when someone posted a link on Twitter. Apologies, I...
2018-04-27 (first published: 2018-04-18)
3,315 reads
Does your company have a Chief Data Officer? Steve Jones doesn't think you need one to use data wisely.
2018-04-27
60 reads
2018-04-27
963 reads
Redgate Software is putting on a one day SQL Privacy Summit on May 18 in London at the Grange Tower...
2018-04-26
392 reads
2018-04-26 (first published: 2008-09-26)
62,431 reads
2018-04-26 (first published: 2010-05-25)
66,205 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers