SQL Live Conference – December 2-7 in Orlando
I am proud to contribute to this year’s Live360 conference, to be held in Orlando Florida at the Royal Pacific...
2018-11-19
170 reads
I am proud to contribute to this year’s Live360 conference, to be held in Orlando Florida at the Royal Pacific...
2018-11-19
170 reads
As part of the PASS Summit conference session that Bob Pusateri and I are presenting right now called “Cosmos DB...
2018-11-09
186 reads
What a whirlwind year this has been! I’m thrilled to invite you to my sessions at this year’s PASS Summit,...
2018-11-06
70 reads
I’m presenting an exciting preconference training session on Friday, October 26, ahead of the SQL Saturday in Lincoln, Nebraska. This...
2018-10-23
194 reads
I hope to see you all at this year’s VMworld 2018 USA conference where I’m lucky enough to have been...
2018-07-24
741 reads
I am extremely proud to announce that I am presenting in conjunction with VMware Corp. an all-day boot camp for...
2018-07-21
382 reads
I’m extremely proud to announce that I have been selected to present an all-new preconference training session on Friday, June...
2018-05-22
284 reads
I’m very pleased to announce that one of my sessions submitted for this year’s PASS Summit in Seattle, held from...
2018-05-10
261 reads
I am proud to present an in-person presentation for the New England SQL Server Users Group entitled “Level Up Your...
2018-04-10
266 reads
SIOS and I are proud to host a joint free webinar entitled “DBAs vs. SysAdmins in Cloud Availability” on Thursday,...
2018-04-02
284 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. Brigjen Jl. Slamet Riyadi No.3, Kauman, Kec. Ps. Kliwon, Kota Surakarta,...
WhatsApp: 0817839777 Jl. Jend. Sudirman No.391 A, Brubahan, Purwanegara, Kec. Purwokerto Tim., Kabupaten Banyumas,...
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