Meet the DBA in Space Judges
Judging any contest is difficult, as you want to be as fair as possible. So coming up with the final...
2011-12-06
645 reads
Judging any contest is difficult, as you want to be as fair as possible. So coming up with the final...
2011-12-06
645 reads
Scott Hanselman has a great list of the power tools he uses for Windows and development. It’s worth a read,...
2011-12-06
1,795 reads
For me the Wednesday before Thanksgiving was a quiet day at work. It was one of those ‘everyone is leaving...
2011-12-06
618 reads
In keeping with the past, I’m going to go ahead and post my evals for the two sessions I did...
2011-12-06
1,583 reads
Welcome to the third of a few sponsor interview posts from SQL Saturday 99. After reading Arnie Rowland’s (Blog | @ArnieRowland)...
2011-12-06
731 reads
I’m sure that I’m not the only one with nightmares about the startup parameters in older versions of SQL Server...
2011-12-06
1,184 reads
Today, the final 15 competitors were announced at the DBA in Space website. To get into the final 15, the...
2011-12-06
938 reads
This month’s T-SQL Tuesday is being hosted by Allen White (blog | @SQLRunr ). The topic: Share your T-SQL tips and tricks. ...
2011-12-06
1,252 reads
The voting for Red Gate Software’sDBA in Space Contest is to begin on Tuesday, December 6, after the final 15...
2011-12-06
691 reads
http://www.flickr.com/photos/paulhagon/369576792/I want to start this blog out with a Warning Dear Reader. The technique that I am going to describe...
2011-12-06
809 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
Best Inspection and Auditing Services of India focus on precision, quality control, and compliance,It...
WA:08218154393 Jl. Surabaya No.88 B-C, Ps. Baru, Kec. Medan Kota, Kota Medan, Sumatera Utara...
WA:08218154393 Jl. Perak Bar. No.267, Perak Utara, Kec. Pabean Cantian, Surabaya, Jawa Timur 60165
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