2018-06-14
900 reads
2018-06-14
900 reads
2018-06-13
94 reads
I’m slightly surprised that there haven’t been more invitations about Azure, with the main development branch of SQL Server being...
2018-06-12
331 reads
Steve talks about Machine Learning Services in SQL Server and whether using this is a good idea.
2018-06-12
179 reads
Analyzing performance often requires you to understand what is normal and what is not. Steve talks about the importance of baselines.
2018-06-11
74 reads
2018-06-11
159 reads
2018-06-11
784 reads
Is there a best way to comment code? Or maybe just different styles. Steve Jones asks what you think today.
2018-06-08
102 reads
I like having problems to practice solving in computer science. It can be a fun hobby, and it exercises your...
2018-06-08
1,386 reads
2018-06-08
734 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