2018-06-07
82 reads
2018-06-07
82 reads
I setup a new instance of SQL Server on Linux some time ago. At the time, the Linux machine didn’t...
2018-06-07
1,015 reads
2018-06-06
161 reads
We’ve got the schedule up and you can register today. Once again I’m heading to the UK, along with Grant,...
2018-06-06
1,162 reads
2018-06-06
710 reads
2018-06-05
66 reads
2018-06-05
873 reads
I have no idea if this is the best thing, but I went to boot up a Linux VM today...
2018-06-04
313 reads
2018-06-04
136 reads
2018-06-04
1,119 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...
WA:08218154393 Jl. Gatot Subroto No.080A, RT.001, Cigobang, Gunungsimping, Kec. Cilacap Tengah, Kabupaten Cilacap, Jawa...
WA:08218154393 Jl. Jend. Ahmad Yani No.118, Sidakaya Dua, Sidakaya, Kec. Cilacap Sel., Kabupaten Cilacap,...
Comments posted to this topic are about the item SSRS Reminded Me of the...
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