A Python SQL Server App
I got a link recently from Microsoft on building apps easily for SQL Server. At the top of the page,...
2016-12-06
1,391 reads
I got a link recently from Microsoft on building apps easily for SQL Server. At the top of the page,...
2016-12-06
1,391 reads
2016-12-06
1,141 reads
2016-12-05
922 reads
I work on a few projects and have a bunch of demos setup, but I don’t work on them all...
2016-12-04
549 reads
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
107 reads
More dbatools experimentation for me. This is a great set of Powershell cmdlets that solve simple, handy problems. In this...
2016-12-02
1,005 reads
I’ve been trying to get used to using the dbatools cmdlets in PoSh. They help me learn some PowerShell, but...
2016-12-02 (first published: 2016-11-25)
1,535 reads
2016-12-02
1,157 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-12-01
759 reads
Learning more about your craft can translate into more earnings, but it won't be easy.
2016-12-01
113 reads
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp:0821-8154-398 Area Street Festival, Ruko No 1 & 1A, CBD, Jl. Galuh Mas Raya,...
WhatsApp:0821-8154-398 Wisma BCA Pd. Indah, Jl. Metro Pondok Indah No.10, RT.3/RW.17, Pd. Pinang, Kec....
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