Bard, Google’s ChatGPT Competitor
See how the Google AI, Bard, works and answers questions about data topics.
2023-07-03
3,737 reads
See how the Google AI, Bard, works and answers questions about data topics.
2023-07-03
3,737 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,208 reads
In this article, we look at an ensemble AI model which can be considered a collection of two or more AI models that complement each other to arrive at an outcome for a set of historical data.
2023-05-26
Today Steve has a few thoughts, and links, from the Build Keynote last week, which featured AI technology.
2023-05-26
158 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,960 reads
In this article, you will see how ChatGPT works with a database project.
2023-05-01
12,565 reads
Learn how you can interact with ChatGPT from PowerShell.
2023-09-06 (first published: 2023-04-24)
7,155 reads
With the ChatGPT and AI crazy sweeping through the media, Steve has a few thoughts on what this might mean for data professionals.
2023-04-22
198 reads
2023-04-10
320 reads
Learn how you can connect ChatGPT to VS Code and use it to help you fix your code.
2023-04-10
68,186 reads
By DataOnWheels
The T-SQL Tuesday topic this month comes James Serra. What career risks have you...
This T-SQL Tuesday is hosted by the one and only James Serra – literally...
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers