Chapter 38 – Successfully Implementing Kerberos Delegation
Cross posted from the SQLPespectives blog put together Richard Rodriguez, Chris Shaw, and Jeremy Lowell for a chapter by chapter...
2010-10-19
778 reads
Cross posted from the SQLPespectives blog put together Richard Rodriguez, Chris Shaw, and Jeremy Lowell for a chapter by chapter...
2010-10-19
778 reads
A few months ago as I came across tab groups in SSMS and once I found them I was very...
2010-10-11
1,097 reads
Well, the event is closing in fast, less than 2 weeks away! We have over 300 registered, a great schedule,...
2010-10-06
545 reads
I had the good fortune of being able to travel to Denver for SQLSaturday #52 the weekend of September 25,...
2010-10-04
671 reads
This morning we made some changes to the database. We realized that as part of a re-factor we needed to...
2010-09-30
1,377 reads
Since there has been a bit of a furor over the PASS election process the past 2 years I thought...
2010-09-23
479 reads
We are less than an month from SQLSaturday #49 – Orlando at Seminole State College – Sanford/Lake Mary campus on October 16th. ...
2010-09-20
498 reads
Well, I’ve been waiting to book hotel and rental car for SQLSaturday #52 – Colorado because I wasn’t sure if my...
2010-09-17
357 reads
Live Meeting: https://www.livemeeting.com/cc/usergroups/join?id=NQ65ZG&role=attend
Mini-Session
Topic: Using PIVOT – Going from Static to Dynamic
Sometimes data normalization results in a data structure that is not convenient for...
2010-09-14
459 reads
I had the pleasure of making my second annual September visit to the Space Coast SQL Server User Group in...
2010-09-13
342 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