Exploring the Kubernetes dashboard in Azure Container Services
Last week I went through how to run SQL Server in Kubernetes on Azure Container Services (ACS)
This week I want...
2017-09-06
841 reads
Last week I went through how to run SQL Server in Kubernetes on Azure Container Services (ACS)
This week I want...
2017-09-06
841 reads
Back in March I did my first “feature length” presentation at SQL Saturday Iceland
At that point I’d done a few...
2017-09-04
274 reads
Going to be a busy few weeks as conference season gets into full swing. Really looking forward to the next...
2017-09-01
332 reads
I’ve been meaning to get to grips with Kubernetes for a while now but I have to admit, I was...
2017-08-30
874 reads
Last week I was working on an upgrade and ran into a few issues. Whilst waiting for the company’s support...
2017-08-28
313 reads
Great week this week as I’ve been selected to speak at 4 of the SQL Relay events in October! Really...
2017-08-25
331 reads
I posted a couple of messages on twitter over the weekend giving any new bloggers advice that was given to...
2017-08-21
286 reads
One of the best features introduced in SQL Server 2016 was the Query Store. Having the ability to see which...
2017-08-19
550 reads
Cool week, I’ve been selected to present at SQL Saturday Holland & SQL Saturday Denmark this year. September and October are...
2017-08-18
376 reads
Last week I presented my session on SQL Server & Containers for the PASS Virtualization Group and during my prep I...
2017-08-28 (first published: 2017-08-16)
2,945 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. Brawijaya No.8, Pocanan, Kec. Kota, Kota Kediri, Jawa Timur 64123
WA:08218154393 Jl. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
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