The World’s Largest
Each year, the Georgia Bulldogs and the Florida Gators meet on the college grid iron in what’s called the world’s...
2010-11-16
533 reads
Each year, the Georgia Bulldogs and the Florida Gators meet on the college grid iron in what’s called the world’s...
2010-11-16
533 reads
When visiting clients, I often find that one or more databases have a table (or several) containing metadata. Most often, these tables have only a single row of data...
2010-11-16
8 reads
When visiting clients, I often find that one or more databases have a table (or several) containing metadata. Most often,...
2010-11-16
619 reads
When visiting clients, I often find that one or more databases have a table (or several) containing metadata. Most often, these tables have only a single row of data...
2010-11-16
7 reads
I was so excited when I found out that Denali was released last week. Like it was Christmas time, I...
2010-11-16
480 reads
I get asked this question fairly often. How do I find time to write so much, work on SQL Server,...
2010-11-15
1,001 reads
The PASS Summit is complete and we got what we asked for from David Dewitt. He spoke on the third...
2010-11-15
2,093 reads
Today’s post is a quick one that came out of a conversation on Twitter. To make a long story short,...
2010-11-15
2,844 reads
First, if you haven’t tried PAL yet, I highly recommend downloading it from CodePlex and giving it a try. You...
2010-11-15
893 reads
PASS Summit 2010 is over, and we are suffering from the lack of chatter and SQL celebrity sightings. Bloggers are...
2010-11-15
586 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