Types Matter!
Louis Davidson (@DrSql) had an excellent series on his blog on the Pillars of Database Design and the one of...
2009-08-24
436 reads
Louis Davidson (@DrSql) had an excellent series on his blog on the Pillars of Database Design and the one of...
2009-08-24
436 reads
Well, I had a pretty good week this week. I made an effort and met all my goals:
Eat smaller portions...
2009-08-23
357 reads
Okay, Jorge Segarra (@SQLChicken) tagged me in Chris Shaw’s (@SQLShaw) latest SQL Quiz, SAN’s and Mirroring. I’m a little behind...
2009-08-21
337 reads
Wow! Andy Warren has put together a week of low-cost seminars filling the entire week before SQLSaturday #21 – Orlando. What...
2009-08-17
464 reads
Well, I had a pretty good week this week. I made an effort and met all my goals:
Eat smaller portions...
2009-08-15
378 reads
When I first started by career in IT and SQL Server about 10 years ago I lived in a small...
2009-08-12
459 reads
Since I have an MSDN subscription I downloaded Windows 7 Ultimate 64-bit this past week. I installed it on my...
2009-08-09
397 reads
Well, I made it through the first week of Active August (Twitter) without killing myself. In my first Active August...
2009-08-08
335 reads
PASS is sponsoring a 24 hours of PASS event on September 2nd. Consecutive live (Live Q&A also) 1 hour sessions...
2009-08-03
319 reads
I caught this blog post, Who says technical presentations can't be engaging?, today thanks to Dana Coffey (@crazeegeekchick on Twitter). ...
2009-08-03
335 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