Notes From the 2nd SQLOrlando Lunch Meetup
I won’t blog all of these we do, but wanted to capture a few thoughts and then revisit later in...
2019-02-17
123 reads
I won’t blog all of these we do, but wanted to capture a few thoughts and then revisit later in...
2019-02-17
123 reads
I drove over to Melbourne on to speak to the group, hadn’t been over in a while. Quick notes:
8 attendees,...
2019-02-17
109 reads
A great experience!
Thanks to all the atendess to my session about T-SQL, for being my first time as a speaker for a SQL Saturday it was good!As I promised,...
2019-02-17
11 reads
I’ve finally updated my Power BI Architecture Diagram to include some of the new features that are now available and...
2019-02-16
787 reads
A great experience!Thanks to all the atendess to my session about T-SQL, for being my first time as a speaker...
2019-02-16
148 reads
Note: I’ve been meaning to start a series on the basics of SQL Server Reporting Services (SSRS). The last time...
2019-02-16
387 reads
Several weeks ago, while on a flight traveling home from San Francisco, I received an exciting email. I had submitted...
2019-02-15
488 reads
Check how many bicycles he has got at home and where was the destination of last year of a 400...
2019-02-15
109 reads
If you ever tried to capture a benchmark on your SQL Server, you probably know that it is a complex...
2019-02-15
508 reads
(2019-Jan-28) When you work with maps using ArcGIS visual in Power BI, you always have a feeling that it is a...
2019-02-15 (first published: 2019-01-28)
3,010 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 Ubud No.10, Petulu, Kecamatan Ubud, Kabupaten Gianyar, Bali 80571
WA:08218154393 Jl. Maluku No.10, Dauh Puri, Kec. Denpasar Bar., Kota Denpasar, Bali 80119
WA:08218154393 Jl. Raya Ciawi No.151, Pakemitan, Kec. Ciawi, Kabupaten Tasikmalaya, Jawa Barat 46156
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