Database Sequence Objects with dbatools
This article delves into five new dbatools command that work with sequence objects.
2023-05-31
1,522 reads
This article delves into five new dbatools command that work with sequence objects.
2023-05-31
1,522 reads
This article shows the basics of using PowerShell Desired State Configuration to install a SQL Server.
2023-05-29
7,759 reads
Learn how you can interact with ChatGPT from PowerShell.
2023-09-06 (first published: 2023-04-24)
7,178 reads
See how well ChatGPT works with questions on generating PowerShell code.
2023-03-20
14,304 reads
Learn how to more easily manage permissions in the Power BI service using PowerShell.
2022-06-06
3,222 reads
When do you choose to use one tool or language over another. Steve discussed T-SQL vs. PowerShell.
2022-04-20
179 reads
2022-02-14
4,593 reads
2022-01-07
465 reads
Knowing how to manipulate strings is critical in any language. In this article, Greg Moore explains working with PowerShell strings.
2021-12-20
2021-12-15
437 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. Raya Ubud No.10, Petulu, Kecamatan Ubud, Kabupaten Gianyar, Bali 80571
WA:08218154393 Jl. Maluku No.10, Dauh Puri, Kec. Denpasar Bar., Kota Denpasar, Bali 80119
WA:08218154393 Jl. Raya Ciawi No.151, Pakemitan, Kec. Ciawi, Kabupaten Tasikmalaya, Jawa Barat 46156
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