Defensive Db Programming Chapter 09
It is down to the final two chapters of the book by Alex Kuznetsova. Check out the previous chapter here. The review of this book is certainly taking longer...
2010-11-22
4 reads
It is down to the final two chapters of the book by Alex Kuznetsova. Check out the previous chapter here. The review of this book is certainly taking longer...
2010-11-22
4 reads
It is down to the final two chapters of the book by Alex Kuznetsova. Check out the previous chapter here....
2010-11-22
965 reads
Most people are very aware of the fact that having a foreign key constraint in place on your tables adds...
2010-11-22
1,701 reads
Hey folks, we all know that there are some great training organizations out there (AHEM Pragmatic Works, AHEM). I hate...
2010-11-22
410 reads
Hey folks – It’s time again for SQL Saturday Tampa. Original Birthplace of Iron Chef SQL Server. I have submitted this...
2010-11-22
591 reads
Hey folks – A quick one today since I’m travelling, but I am sharing something I often share with my clients...
2010-11-22
536 reads
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-22
425 reads
It’s vacation week for me. Everything’s scheduled for SQLServerCentral, and my family is taking our annual ski break for Thanksgiving....
2010-11-22
703 reads
The sessions are over, and the post-cons are done; the vendor parties are but a memory, and the #sqlkaraoke music...
2010-11-22
1,152 reads
As I was doing a little research this evening for a client, I hit the SQLMag site for the latest updates. ...
2010-11-22
652 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