Choosing a Career
Learning about new jobs is a good way to help decide if you want to change careers.
Learning about new jobs is a good way to help decide if you want to change careers.
Data Migration Assistant (DMA) to Check for SQL Server Compatibility Issues and Perform assessment when Migrating to Azure SQL Database or to SQL Server on an Azure Virtual machine.
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
In this tip we look at how you can monitor Azure health to know if there are any issues that may interupt your services running on Azure.
Testing our database code is a fairly immature process for many of this, but perhaps we could build a guide that helps everyone learn to write better and more comprehensive tests.
Acknowledging fundamental design flaws lead to a more flexible, maintainable phonetic framework
In theory, you get better execution plans when SQL Server understands the contents of your tables. In practice, well, it's hit or miss.
An article about tally tables, N-Grams and the fastest character-level N-Grams function available today for SQL Server.
In this article, Andy Brown shares his knowledge of how to create calculated columns in tables, using Power BI as the host software (all of the formulae shown would work equally well in PowerPivot or SSAS Tabular). This article is designed to be the first in a series of articles which will show you how to master programming in DAX.
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers