The 2008 PASS Community Summit Wrap Up
Steve Jones talks a bit about the conference with links, pictures, and more from the event.
2008-11-26
789 reads
Steve Jones talks a bit about the conference with links, pictures, and more from the event.
2008-11-26
789 reads
2008-11-26
641 reads
2008-11-26
617 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
531 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
525 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
778 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-25
129 reads
My goal of 400 posts a month has been in jeopardy with all the traveling I've been doing over the...
2008-11-25
1,482 reads
I heard during last week that the 2009 PASS Community Summit will be back in Seattle, on Nov 3-6 next...
2008-11-25
1,568 reads
2008-11-25
510 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: 0817839777 Jl. A. R. Hakim No.2, Mangkukusuman, Kec. Tegal Tim., Kota Tegal, Jawa...
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