Google Replication
One of the things that I've struggled with for some time is how to manage my data across multiple machines....
2009-03-16
931 reads
One of the things that I've struggled with for some time is how to manage my data across multiple machines....
2009-03-16
931 reads
Most of the time, you want to have a SQL result in a particular order. Occasionally you just don't care....
2009-03-16
3,124 reads
In response to former Quebec Premier Bernard Landry’s comments of this past week regarding the posting of Michael Sabia as...
2009-03-15
4,333 reads
Last night I was at the store with Delaney after karate and he mentioned that we needed to go pick...
2009-03-13
862 reads
This year, I was asked to participate on the PASS Program Committee Management team as the “Speaker Manager.” One of...
2009-03-13
846 reads
I was looking at Twitter the other day and saw a few of the people I follow debating the need...
2009-03-13
800 reads
Yesterday evening I gave a talk about Grouping Sets in SQL 2008 thanks in part to the original front-page blog post...
2009-03-13
656 reads
Last week I was in Seattle, so I decided to stay an extra day and drive up to Vancouver to...
2009-03-12
640 reads
Hi everyone, just little info that we have available the Service Pack 1 for SQL Server2008!
About overview, instructions, system...
2009-03-12
540 reads
I've always told DBAs and developers working for me that backups don't really matter. After all, 99.99% of the time...
2009-03-12
448 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