When Do You Know That You Know
Why, when you can help others, that's when!
In my role as a senior Moderator with the MSDN SQL Forums, I am often...
2008-10-17
455 reads
Why, when you can help others, that's when!
In my role as a senior Moderator with the MSDN SQL Forums, I am often...
2008-10-17
455 reads
I've had a bunch of writings based on finances over the last couple weeks, and I've tried to spread them...
2008-10-17
660 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
675 reads
As I travel and visit DBAs from around the United States, I am always surprised at the job titles DBA...
2008-10-16
639 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
822 reads
Every week, there are dozen of free educational events to attend throughout the United States. The sad part is that...
2008-10-15
627 reads
I've always been very concerned about where I work. Well, maybe not always, since early in my career I took...
2008-10-15
633 reads
Back in May I wrote about signing up for FlyClear as a way to save time travelling and in doing so,...
2008-10-14
524 reads
I’m sure that the people at Mint and Thrive have people’s best interests at heart. They built services designed to...
2008-10-14
952 reads
The past few weeks have been a rough one all around the globe as economies aren't doing well. I studied...
2008-10-14
604 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