SQL Saturday Glory
Have you taken the time to plan a fall get-away for some free SQL Server training? You can do this...
2010-09-08
769 reads
Have you taken the time to plan a fall get-away for some free SQL Server training? You can do this...
2010-09-08
769 reads
A couple weeks back someone asked me some questions about data types. Apparently, while implementing some financial data, each developer...
2010-08-24
780 reads
This Friday I’ll be traveling to Nashville for SQL Saturday #51. Because I rock, I picked a 5:40 AM flight...
2010-08-17
515 reads
It’s that time of the month and that time of the years. Time for another PASSMN meeting. Also, time for...
2010-08-16
426 reads
That’s right! PASSMN is breaking the mold and heading onto new ground. We are making our second annual Friday full-day...
2010-08-16
544 reads
It’s been a busy week and I haven’t been able to put the time in to picking the winner for...
2010-08-07
773 reads
I’ll be speaking for the SQL PASSDatabase Administration Virtual Chapter today at 12 PM Eastern time. The topic will be...
2010-07-28
589 reads
I’ll be speaking for the SQL PASSDatabase Administration Virtual Chapter next week. It’ll be on July 28 at 12 PM...
2010-07-21
610 reads
Don’t forget the July PASSMN meeting is today. We have Itzik Ben-Gan (blog) coming in to talk about some query...
2010-07-20
544 reads
The July PASSMN meeting is is coming up next week. If you’ve not registered now’s a great time to get...
2010-07-13
694 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...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
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