Practice Your Restores
Steven Jones posted an excellent editorial today all about how your backups are only good if you know that you...
2009-12-30
1,324 reads
Steven Jones posted an excellent editorial today all about how your backups are only good if you know that you...
2009-12-30
1,324 reads
Because running a small user group is a labor of love, we look for time savings wherever we can to...
2009-12-30
1,833 reads
I think I’ve met my goal of blogging every day. I’m at almost 800 posts now over the past 2.5...
2009-12-30
1,406 reads
Over the last few weeks I have focused most of my blog energy into writing a couple articles. So I...
2009-12-29
1,872 reads
When we first started Midlands PASS, we tried to do it the way PASS suggested. We tried to get folks...
2009-12-29
1,417 reads
It's the end of another year, and thus the beginning of the next one. Whether you had a successful 2009...
2009-12-29
1,410 reads
I had a fun support call I need to share. A developer called up to tell me that a particular...
2009-12-29
1,303 reads
I was contacted recently by someone that was hiring a new employee. They had searched out applicants on the Internet...
2009-12-29
1,459 reads
Perhaps you heard of or actually tried Windows ReadyBoost in Windows Vista, and were (like me) disappointed with the results?...
2009-12-29
3,142 reads
I had a student recently who said that to get any type of training she had to write a proposal...
2009-12-29
1,544 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:0821-4447-7715 J & K, Jl. Caman Raya No.17, RT.003/RW.003, Jatibening, Kec. Pd. Gede, Kota...
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...
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