Kevin Kline Joins the SQLSaturday Advisory Council
The official announcement was just posted, Kevin Kline is the first member of the Advisory Council. As I mentioned on...
2009-08-14
1,046 reads
The official announcement was just posted, Kevin Kline is the first member of the Advisory Council. As I mentioned on...
2009-08-14
1,046 reads
The Coldest Winter: America and the Korean War by David Halberstam ($15 at Amazon) was really the first reading I...
2009-08-14
699 reads
Both my wife and I work from home, and we've done it for years. I've been working full time for...
2009-08-14
982 reads
Greetings, ALL:
As more and more companies get on board and begin to adapt SQL Server 2008, what is the best...
2009-08-13
679 reads
If you're not familiar with the reference, it comes from the movie Madagascar and the subsequent sequel and TV series...
2009-08-13
13,872 reads
Well, actually, these are the guidelines for submitting anything to SQLPASS, but it includes the guidelines for SQL Server Standard....
2009-08-13
1,171 reads
Well I spent most of this past Saturday upgrading my Laptop to Windows 7 Ultimate, which I have to say...
2009-08-13
753 reads
In a previous blog post, I began writing about how one might start a career as a database professional, and...
2009-08-13
617 reads
I guess I did a good job, with all 3s and 4s in my eval (meaning good and great) for...
2009-08-13
788 reads
One of the reasons that I think the PASS Summit fits well in Seattle is the support that they get...
2009-08-13
920 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