DBA's Delight
Tto the beat of “Rapper’s Delight”
“Now what you hear is not a parse
I'm rapping to the code
'cause me, my tweeps,...
2009-05-19
1,525 reads
Tto the beat of “Rapper’s Delight”
“Now what you hear is not a parse
I'm rapping to the code
'cause me, my tweeps,...
2009-05-19
1,525 reads
Transaction isolation level:1. Uncommitted Read (NoLock)2. Committed Read (blocking)3. Repeatable Read (phantom)4. Snapshot (no blocking)5. Serializable (no blocking)Dirty Read:(DR)Non Repeatable Read:(NRR)Phantom:(P)Great...
2009-05-19
1,153 reads
For the past couple years I've been using a Targus (I think the model 300 right now) and they've been...
2009-05-18
892 reads
Keynote speaker, Bill Veghte, Senior Vice President of Windows Business at Microsoft.
TechEd 2009 was started with a keynote presentation from...
2009-05-18
1,233 reads
If you are a leader of a Microsoft-related user’s group, and you haven’t done so already, you will want to...
2009-05-18
569 reads
If you want to be the first on your block to see the CTP (Community Technology Preview) of SQL Server...
2009-05-18
492 reads
I stopped by Compusa on the way home to pick up a package of blank DVD's and did the 10...
2009-05-18
783 reads
As I'm digging more into SQL Server 2008 encryption I'm learning some interesting things about how SQL Server handles encryption....
2009-05-18
2,705 reads
My rolling 30 day post count dropped crazily this weekend. I noticed, but with family committments, I didn't do anything...
2009-05-17
636 reads
As none of us are immune to the current financial crisis, and your development projects have probably come to a...
2009-05-16
769 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