Book Review: Let’s Create (for children)
I’m fond of browsing the discount shelf at the bookstore, it’s another way to see books that I might otherwise...
2009-11-26
577 reads
I’m fond of browsing the discount shelf at the bookstore, it’s another way to see books that I might otherwise...
2009-11-26
577 reads
Ola Hallengren has recently updated his popular free SQL Server database maintenance scripts to support the newest point release of...
2009-11-26
1,438 reads
If you are interested in speaking at the PASS European Conference 2010, to be held in Neuss, Germany, April 21-23,...
2009-11-26
583 reads
I’d like to say thanks to Andy and Judith over at the Ft. Worth SQL Server User Group for having...
2009-11-26
775 reads
If all goes well, by the time you read this on Thanksgiving I’ll be up in the mountains of Colorado....
2009-11-26
777 reads
I know Thanksgiving has some deeper meanings, but at one level it’s all about the food. Food is a good...
2009-11-25
609 reads
It is said that you should not give direct table access (even select permission) to a user or group. But...
2009-11-25
530 reads
I had to run our weekly conference call this week. My boss is out of the office, but he’s been...
2009-11-25
741 reads
I have noticed that one of the best way to learn about a certain topic is to write an article...
2009-11-25
699 reads
I saw a post recently about the tempdb being overly large and causing issues for a user. The person was...
2009-11-25
2,280 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 Puputan No.10, Panjer, Denpasar Selatan, Kota Denpasar, Bali 80226
WA:08218154393 Jalan Dokter Sutomo No.3, Banjar Bali, Kec. Buleleng, Kabupaten Buleleng, Bali 81113
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