2026-05-25
436 reads
2026-05-25
436 reads
2026-05-04
438 reads
2026-04-10
732 reads
2026-04-01
840 reads
Learn how you can use Grafana natively inside SQL Server Reporting Services.
2026-04-01
6,398 reads
Last time we turned SQL Server into a Christmas tree. Every year around St Patrick's Day I find myself doing something I can't fully justify. This year that thing was using SQL Server's spatial viewer to draw a shamrock and a pint of Guinness. Hope you have a happy St Patrick's Day and a few […]
2026-03-16
2,230 reads
2025-12-31
1,151 reads
2025-12-29 (first published: 2025-12-24)
590 reads
A little Christmas fun for you using the spatial features in SQL Server and SSMS.
2025-12-24
4,276 reads
2025-11-28
70 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