2023-11-20 (first published: 2023-10-02)
2,891 reads
2023-11-20 (first published: 2023-10-02)
2,891 reads
This article will show the basic outline for how Python scripts can access and work with data in SQL Server.
2023-11-06
16,447 reads
See how well the Bard AI does with moving data into SQL Server.
2023-08-28
2,186 reads
Introduction about Bing vs Bard You heard it well Chatbot wars, the war between Bing vs Bard. Ladies and gentlemen, in the Google corner we have the challenger, Bard! And in the Microsoft corner, we have a powerful AI-based in ChatGPT 4, the stupendous, the magnificent…Bing! (applause). These great chatbots will demonstrate their power in […]
2023-08-14
2,101 reads
See how the Google AI, Bard, works and answers questions about data topics.
2023-07-03
3,718 reads
A comparison of ChatGPT and the Bing Chat AI to see which one might be more useful for a user.
2023-06-05
5,169 reads
Introduction In this article, we will learn how to generate images with AI. This time we will work with DALL·E. DALL·E is an image generator using AI. You just need to provide a description and DALL·E will generate the image: In this article we will learn these topics: First, we will learn what is DALL·E […]
2023-05-22
3,844 reads
In this article, you will see how ChatGPT works with a database project.
2023-05-01
12,336 reads
Learn how you can connect ChatGPT to VS Code and use it to help you fix your code.
2023-04-10
67,852 reads
See how well ChatGPT works with questions on generating PowerShell code.
2023-03-20
14,139 reads
By Rayis Imayev
(2025-June-15) Long gone are the days when a data engineer could simply focus on building...
By Ed Elliott
I recently encountered an interesting issue with ADF where the publish feature suddenly attempted...
Image from Afdhaluddin on ShutterstockCLI which is generally referred to as Command Line Interface...
Comments posted to this topic are about the item How Many Can Be the...
Comments posted to this topic are about the item How to process images and...
Comments posted to this topic are about the item Patching the Patch
I am trying to analyze a number of columns in a large table to determine the highest value for each row. In SQL Server 2022, we have the GREATEST function, which will return the greatest value from those columns passed in. How many columns can I include in an expression like this:
select GREATEST( col1, col2, col3, ...)See possible answers