SQLPASS Virtual Chapters
Today is a topic that is close to my heart. Many of you probably don’t know that the SQL pass...
2010-11-22
542 reads
Today is a topic that is close to my heart. Many of you probably don’t know that the SQL pass...
2010-11-22
542 reads
There have been several usability features that have been added to SSIS in the latest CTP.One of these features is...
2010-11-22
837 reads
Have you ever had to take a long column of data in Excel and turn it into a column? There...
2010-11-22
371 reads
Since it’s Sunday (almost Monday), I thought I would chip into Un-SQL Friday. Before I get down to brass tacks,...
2010-11-22
1,044 reads
Follow the rest of this series at the XQuery for the Non-Expert – X-Query Resources introduction post.
Talk to the Experts
In the...
2010-11-22
2,034 reads
I will be replacing speaker Steven Robidas on Tuesday, 23 November at Microsoft TechDays.ca Montreal. The discussion will be on...
2010-11-21
642 reads
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-21
500 reads
Hey there folks! I am sorry it has been about a week without an entry.I have been on planes all...
2010-11-21
327 reads
SQLSaturday#59 went off without a hitch! It was one awesome fun-filled day with our great speakers, sponsors, volunteers, and hundreds...
2010-11-21
1,154 reads
My friend Jen McCown of MidnightDBA fame issued a challenge last week called “Un-SQL Friday”. The inaugural topic is on...
2010-11-21
705 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
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