SQL Saturday 35 Dallas - Postmortem
We're three weeks removed from the first annual SQL Saturday Dallas event, so I've had a little time to gather...
2010-06-14
963 reads
We're three weeks removed from the first annual SQL Saturday Dallas event, so I've had a little time to gather...
2010-06-14
963 reads
A guest editorial from Tim Mitchell today looks at technology, and how quickly we become accustomed to it.
2010-06-07
129 reads
This weekend I flew out to Pensacola, Florida to present a session at SQL Saturday 22. This was the second...
2010-06-06
675 reads
So for those of you who attended SQL Saturday Dallas this past weekend, here’s my Top Ten(ish) list from the...
2010-05-25
617 reads
This is a strange feeling. No frantic deadlines. No daily conference calls with the team. No hurried trips to the...
2010-05-24
639 reads
Everyone is invited to a webcast hosted by the PASS Business Intelligence virtual chapter this Friday, May 14th, as we...
2010-05-10
691 reads
Is the order of parameters important in SQL Server Reporting Services reports? If you’ve got nested parameters (parameters that derive...
2010-05-08
2,606 reads
I’ve got a couple of speaking engagements coming up during the next few months, and a few others I’m hoping...
2010-04-21
580 reads
I usually don't do book reviews (at least publicly, anyway), but when I find a piece of work that I...
2010-04-16
2,161 reads
The PASS BI Virtual Chapter’s scheduled session for this Thursday, April 15th, will have to be postponed until a later...
2010-04-12
670 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...
WA:08218154393 Jl. Gatot Subroto No.080A, RT.001, Cigobang, Gunungsimping, Kec. Cilacap Tengah, Kabupaten Cilacap, Jawa...
WA:08218154393 Jl. Jend. Ahmad Yani No.118, Sidakaya Dua, Sidakaya, Kec. Cilacap Sel., Kabupaten Cilacap,...
Comments posted to this topic are about the item SSRS Reminded Me of the...
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