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 […]
By Brian Kelley
The Techno Security & Digital Forensics Conference (East) runs from June 3-5, 2025, this...
You can find the slides for my session Building the €100 data warehouse with...
I’m working on an update to my Query Performance Tuning book for SQL Server...
Comments posted to this topic are about the item SQL Cookbook: Query Solutions and...
Comments posted to this topic are about the item SQL Server 2022 Query Performance...
Comments posted to this topic are about the item Architecting Power BI Solutions in...
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