AI Can Improve Healthcare
One area where AI has found some traction is in the healthcare industry, where is seems to be helping improve care.
2021-02-08
269 reads
One area where AI has found some traction is in the healthcare industry, where is seems to be helping improve care.
2021-02-08
269 reads
Steve reflects on some of the ideas of how Microsoft imagines the future of computing.
2020-07-27
139 reads
Many of us have used PowerPoint, which has grown smarter through the use of Machine Learning.
2020-05-13
204 reads
Artificial Intelligence hasn't always worked well, but there is one place that is seems to have lots of potential.
2020-04-29
127 reads
A new technique developed by Microsoft is designed to help AI/ML models get trained with minimal data.
2019-12-26
171 reads
In this tip we look at a script that you can use to get better insight on your database tables to help you make some decisions about the data and also the structure of the table.
2019-08-30
As i updated earlier, ML.NET is a free, cross-platform, and open source machine learning framework for .NET developers. It is also an extensible platform that powers Microsoft services like...
2019-05-09
In this post series, I am going to show how we can use Azure Machine learning services and the new features added that make life so easy to...
2019-05-06
Danielle Dean explains how cloud, data, and AI came together to help build Automated ML.
Continue reading Automated ML: A journey from CRISPR.ML to Azure ML .
2019-04-17
Tony Jebara explains how Netflix is personalizing and optimizing the images shown to subscribers.
Continue reading Machine learning for personalization.
2019-04-17
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers