Grabbing Fitbit Data
Recently the T-SQL Tuesday topic was Power BI. A cool topic, and an interesting application.
I saw Rob Farley build a...
2016-02-24
1,324 reads
Recently the T-SQL Tuesday topic was Power BI. A cool topic, and an interesting application.
I saw Rob Farley build a...
2016-02-24
1,324 reads
Today Steve Jones looks at the security enhancements in SQL Server 2016
2016-02-24
172 reads
2016-02-23
148 reads
This past weekend was SQL Saturday #478 – Albuquerque, and I was happy to have the chance to attend again. I...
2016-02-23
747 reads
2016-02-23
1,503 reads
2016-02-22
135 reads
2016-02-22
344 reads
2016-02-22
1,589 reads
2016-02-19
1,819 reads
I was talking with some of our support people recently about permissions on DLM Dashboard. A client was having issues,...
2016-02-18 (first published: 2016-02-11)
1,671 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers