Too Much Data – Idiocracy or Star Trek?
I used to think that too much data was never a bad thing. That having more information out there is...
2010-01-15
928 reads
I used to think that too much data was never a bad thing. That having more information out there is...
2010-01-15
928 reads
Recently, I was asked to do an extensive sql server performance audit and review. I will be sharing some of...
2010-01-15
9,715 reads
I read a lot and like to think my interests are wide, but I fall into ruts all the same....
2010-01-15
530 reads
This will be a very short entry. I just wanted to share a few things I learned very quickly while...
2010-01-15
878 reads
As a DBA, I think it is very important to stay current on trends in x64 based hardware. The DBA...
2010-01-15
736 reads
As a father of two head-strong boys (inherited trait), I struggle with getting them to admit they are wrong when they...
2010-01-15
1,022 reads
When you create and schedule a Data Driven Subscription for a SQL Server Reporting Services (SSRS) report a job is...
2010-01-14
833 reads
My new eBook, Brad’ Sure Guide to SQL Server Maintenance Plans is now available as a free, 269 page PDF...
2010-01-14
1,779 reads
Not every DBA has the time to sit down and spend a couple of hours learning about some new topic...
2010-01-14
441 reads
The second in the Dexter series, Dearly Devoted Dexter starts out with him stalking in the bushes. It’s a well...
2010-01-14
836 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