A Greek Tragedy
This is just tragic. Thanks to Brent Ozar (twitter | blog) for posting it.
Idera web site hit by SQL injection attack
The...
2010-06-11
574 reads
This is just tragic. Thanks to Brent Ozar (twitter | blog) for posting it.
Idera web site hit by SQL injection attack
The...
2010-06-11
574 reads
As I age in years, I realize more and more how blessed I was to attend The Citadel, the Military...
2010-06-08
1,269 reads
Here are the slides from the SQL Server Auditing Class held on June 2, 2010.
Hour 1 - Attacking SQL Server
Hour 2...
2010-06-03
1,027 reads
This has been on my mind since last week after a conversation with a friend of mine, Bobby Dimmick (twitter)....
2010-05-19
1,197 reads
A friend of mine had been out to the Microsoft Certified Architect site recently and noted that the Infrastructure and...
2010-05-14
1,962 reads
In recent days I've kind of dropped off the map with respect to SQL Server, including with the Security and...
2010-05-11
763 reads
I just got done reading Brent Ozar's post about why folks don't get the telecommuting job they want. It's a...
2010-05-07
3,114 reads
This is a short note to say that the SQL University post will arrive tomorrow. Today we're dealing with the...
2010-04-28
1,447 reads
This is the official announcement that we are officially scheduled for holding a SQL Saturday in Columbia, SC, on October...
2010-04-27
891 reads
Welcome to the Security and Auditing Week for SQL University. Last semester we looked at the basics of SQL Server...
2010-04-26
2,788 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...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
Comments posted to this topic are about the item BIT_COUNT I
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