Five Years, A Quiet Quarter, A Look Ahead to 2016
Five Years of Blogging
From to My blogging story started on December 7, 2010. I have now had a blog for...
2016-01-18
519 reads
Five Years of Blogging
From to My blogging story started on December 7, 2010. I have now had a blog for...
2016-01-18
519 reads
Thanks for joining Anthony Martin (@SQLMartini) and I at the Boston BI User Group Meeting in October. During the session,...
2015-10-28 (first published: 2015-10-20)
2,628 reads
Thanks for attending my session on analyzing data with TSQL. I hope you learned something you can take back and...
2015-10-17
525 reads
Thanks for attending my session on window functions in TSQL. I hope you learned something you can take back and...
2015-10-10
466 reads
As I mentioned in my original post, Exploring Excel 2013 as Microsoft’s BI Client, I will be posting tips regularly...
2015-10-09
917 reads
My Session: Using Azure SQL Database for Enterprise Needs
On 10/6/2015, I presented on Azure SQL Database at TechFuse Minnesota. Some...
2015-10-06
476 reads
On Tuesday, September 15, I presented on this topic for Pragmatic Works. You can find that session here. This session...
2015-09-15
604 reads
As I noted in my previous post, I am not a fan of scripting. In that post we set up...
2015-09-04 (first published: 2015-08-25)
1,307 reads
Let me start by saying, I am not a fan of scripting. It definitely has its place and a lot...
2015-09-01 (first published: 2015-08-24)
1,461 reads
With the rise of HDInsight and other Hadoop based tools, it is valuable to understand how Power BI can help...
2015-08-28
1,521 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...
WA:08218154393 Jl. Raya Puputan No.10, Panjer, Denpasar Selatan, Kota Denpasar, Bali 80226
WA:08218154393 Jalan Dokter Sutomo No.3, Banjar Bali, Kec. Buleleng, Kabupaten Buleleng, Bali 81113
Comments posted to this topic are about the item SSRS Reminded Me of the...
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