Azure Cognitive Services – Vision APIs
In this final post of my Azure Cognitive Services week of Azure Every Day, I’ll focus on the Vision APIs...
2018-09-28
310 reads
In this final post of my Azure Cognitive Services week of Azure Every Day, I’ll focus on the Vision APIs...
2018-09-28
310 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-28 (first published: 2018-09-20)
6,570 reads
(last updated: 2018-12-26 @ 16:20 EST / 2018-12-26 @ 21:20 UTC )
(NOTE: For recent update, please see “Update for CTP 2.2” section)
For some...
2018-09-28
10,636 reads
I’ve never been to Pittsburgh. Actually, in all of my speaking and traveling, I don’t think I’ve even flown through...
2018-09-28
969 reads
One of the very interesting parts of my job is that I run into UK keyboards on a regular basis....
2018-09-28
1,012 reads
This week in my Azure Every Day posts, I’ve been focusing on Azure Cognitive Services and what these features can...
2018-09-27
326 reads
Are you looking to do a major update to your data warehouse or looking to modernize? Many technologies have come...
2018-09-27 (first published: 2018-09-11)
3,068 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,133 reads
This blog post is about a situation where I went to push my latest local changes to my git repository...
2018-09-27
807 reads
I’ve submitted a session proposal to the free, online GroupBy conference. Voting will open for sessions soon, but before then, you can help me out by reading my abstract....
2018-09-27
6 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