SQL Lunch #48 Advanced SSIS Tips & Tricks
I had the privilege of giving a SQL Lunch presentation today. The slide deck for that can be found here: SSIS Tips & Tricks deck. The recording can be...
2011-01-30
13 reads
I had the privilege of giving a SQL Lunch presentation today. The slide deck for that can be found here: SSIS Tips & Tricks deck. The recording can be...
2011-01-30
13 reads
I had the privilege of giving a SQL Lunch presentation today. The slide deck for that can be found here: SSIS Tips & Tricks deck. The recording can be...
2011-01-30
7 reads
Hey Everyone – SQL Rally Voting opens today for the BI Track. There are lots of good sessions and at the...
2011-01-30
1,337 reads
This past weekend I spoke at SQL Saturday #57 in Houston, TX.
I want to thank the local PASS chapter HASSUG,...
2011-01-30
1,630 reads
Well, what a week it’s been. I started my winning blog post for the SQLskills blogging competition by stating that...
2011-01-30
2,099 reads
They say to save the best for last and while I’m not so sure about that I was truly honored...
2011-01-29
479 reads
I wanted simply give a shout out to Andy Leonard (twitter | blog) for his never ending commitment to the SQL Community. Take a look at SQLPeople.net and join...
2011-01-29
18 reads
I wanted simply give a shout out to Andy Leonard (twitter | blog) for his never ending commitment to the SQL Community. Take a look at SQLPeople.net and join...
2011-01-29
6 reads
I wanted simply give a shout out to Andy Leonard (twitter | blog) for his never ending commitment to the SQL...
2011-01-29
1,332 reads
A few weeks a go I presented at OSQL-D in Portland, OR, and a lot of people ask me if...
2011-01-29
2,370 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
Comments posted to this topic are about the item BIT_COUNT II
Comments posted to this topic are about the item I Can't Make You Learn
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers