Learning SQL Server
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
330 reads
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
330 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-12-04
860 reads
Hopefully in the next week or so the full financial info will be released to all members, but in the...
2008-12-03
343 reads
A few of you might be thinking about getting a Kindle for Christmas.If you read a lot, and you move...
2008-12-03
736 reads
Over the past several months, I’ve started diving into the world of wait stats on my instances. An ever present...
2008-12-03
724 reads
Recently I needed to rearrange some stuff at the office and part of that included moving our install of Quickbooks...
2008-12-02
250 reads
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
627 reads
DBA, database developer, analyst, SQL grunt, or whatever your title may be, there is no question that your role will...
2008-12-02
796 reads
General Thoughts
One of my brother’s favorite lines to use in presentations says it best, “If Microsoft had 10 dollars to...
2008-12-02
960 reads
You will see this or a similar code sample when referring to clearing the analysis services cache. However, I have...
2008-12-02
575 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