How to Forecast Data in Power BI
Learn how you can use Power BI to forecase the future trends of data.
Learn how you can use Power BI to forecase the future trends of data.
Microsoft announced that Linux runs on more machines in Azure than Windows. Steve isn't surprised and thinks that Linux use will continue to grow.
What are some of the most common mistakes when working with Power BI? For example, when a junior colleague starts on a Power BI project for the first time, what are the pitfalls you try to warn them about? What advice would you give them?
This article examines how tempdb is affected by recursive queries, using a few different methods.
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
In this article, you’ll learn about the many options for using a GitHub-hosted runner, including Docker.
Steve finds a lot of people don't use version control and don't want to learn how to use it.
In this next level of the Stairway to Snowflake we examine the wide variety of table types that exist in the platform.
The STRING_AGG function concatenates strings separated by a specified separator. This was introduced with SQL Server 2017.
This is a list of the builds for SQL Server 2022. There are other build lists available here. A list of all the builds that I can find and install on my Build VM. If you find a build not listed here, please let the webmaster know (webmaster at sqlservercentral.com). All builds are listed in reverse […]
Tired of inventory headaches? Stock shortages and gluts don't just cause stress; they cost...
So, you want to get your SQL skills razor-sharp without dropping any cash? You're...
By Steve Jones
Here are the slides from my talk today at the Redgate NYC Devour Hour:...
Hello, Can you please clarify the following: In Azure SQL DB both ALLOW_SNAPSHOT_ISOLATION/READ_COMMITTED_SNAPSHOT are set...
What output do the queries produce?
SET CONCAT_NULL_YIELDS_NULL ON; SELECT CONCAT_WS ('-', NULL, NULL); SET CONCAT_NULL_YIELDS_NULL OFF; SELECT CONCAT_WS ('-', NULL, NULL);See possible answers