Book Review: SQL Server 2008 Query Performance Tuning Distilled
I recently finished reading the Apress book SQL Server 2008 Performance Tuning Distilled by Grant Fritchey and Sajal Dam. I...
2010-01-07
1,345 reads
I recently finished reading the Apress book SQL Server 2008 Performance Tuning Distilled by Grant Fritchey and Sajal Dam. I...
2010-01-07
1,345 reads
2010-01-04
760 reads
Well, I set 7 professional goals for 2009 and I did okay in meeting them, but I was not successful...
2009-12-31
1,387 reads
I recently had the opportunity to present, Nuggets Found by Mining the Default Trace, for SQLLunch. This was my first...
2009-12-28
345 reads
Merry Christmas to everyone. As many of you know, at least I hope you do, I am a born-again Christian...
2009-12-24
355 reads
I just found out that I’ve been accepted to speak at SQLSaturday #32 – Tampa on January 23, 2010. My session...
2009-12-23
374 reads
I did my first SQLLunch today and it was fun. I don’t know how many attended, my last look was...
2009-12-21
360 reads
I know you all are clamoring for the opportunity to have lunch with me so I agreed to do a...
2009-12-18
341 reads
The Reported Problem
A few weeks ago I was contacted by a former employer because an SSRS report I had written...
2009-12-17
408 reads
I was tagged by Ken Simmons (@kensimmons) in the blog chain started by David Stein (@made2mentor). Here’s Ken’s post and...
2009-12-14
507 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp:0817-866-887 Area Street Festival, Ruko No 1 & 1A, CBD, Jl. Galuh Mas Raya,...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers