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
255 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
255 reads
Steve reflects on some of the ideas of how Microsoft imagines the future of computing.
2020-07-27
127 reads
Many of us have used PowerPoint, which has grown smarter through the use of Machine Learning.
2020-05-13
187 reads
Artificial Intelligence hasn't always worked well, but there is one place that is seems to have lots of potential.
2020-04-29
120 reads
A new technique developed by Microsoft is designed to help AI/ML models get trained with minimal data.
2019-12-26
165 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
Thanks to everyone who attended my sessions today at SQL Saturday Boston 2025. I’ve...
SQL Server 2025 introduces native support for vector data types and external AI models....
By Steve Jones
Fear is fueled by a lack of imagination. The antidote to fear is not...
I'm building ETL packages in SSIS. My data comes from an OLE DB Source...
Comments posted to this topic are about the item Building AI Governance and Policies-...
Why is sql doing a full scan VS seeking on the index? I've included...
The DBCC CHECKIDENT command is used when working with identity values. I have a table with 10 rows in it that looks like this:
TravelLogID CityID StartDate EndDate 1 1 2025-01-11 2025-01-16 2 2 2025-01-11 2025-01-16 3 3 2025-01-11 2025-01-16 4 4 2025-01-11 2025-01-16 5 5 2025-01-11 2025-01-16 6 6 2025-01-11 2025-01-16 7 7 2025-01-11 2025-01-16 8 8 2025-01-11 2025-01-16 9 9 2025-01-11 2025-01-16 10 10 2025-01-11 2025-01-16The docs for DBCC CHECKIDENT say this if I run with only the table parameter: "If the current identity value for a table is less than the maximum identity value stored in the identity column, it is reset using the maximum value in the identity column. " I run this code:
DELETE dbo.TravelLog WHERE TravelLogID >= 9 GO DBCC CHECKIDENT(TravelLog, RESEED) GO INSERT dbo.TravelLog ( CityID, StartDate, EndDate ) VALUES (4, '2025-09-14', '2025-09-17') GOWhat is the identity value for the new row inserted by the insert statement above? See possible answers