Query Store And Cruel Defaults
Erik Darling loves query store, but he really hates the default capture mode.
Erik Darling loves query store, but he really hates the default capture mode.
The RDBMS works great for many situations, but is it ever fast enough to meet all your needs?
There is a myth that DDL statements can't be rolled back. This article tests and debunks the myth.
In this second article of the series, Diogo Souza walks you through creating the MongoDB code, the query side of the pattern, to complete the CQRS configuration.
Azure SQL Data Warehouse gets some improvements, and Steve has a few comments.
In this tip we look at how you can use DAX formulas within your SQL Server Reporting Services Report Builder reports.
Explore the Azure Data Studio dashboards and see how to customize one of these dashboards to include a new widget.
The LAG function can really improve performance over the old double JOIN.
By Vinay Thakur
Following up on my Part 1 baseline, the journey from 2017 onward changed how...
By Brian Kelley
In cryptography, the RSA and ECC algorithms which we use primarily for asymmetric cryptography...
By Steve Jones
In today’s world, this might mean something different, but in 2010, we had this...
Comments posted to this topic are about the item An Unusual Identity
Comments posted to this topic are about the item Prompt Requests
Comments posted to this topic are about the item T-SQL in SQL Server 2025:...
What values are returned when I run this code?
CREATE TABLE dbo.IdentityTest2
(
id NUMERIC(10,0) IDENTITY(10,10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
INSERT dbo.IdentityTest2
(
somevalue
)
VALUES
( 'Steve')
, ('Bill')
GO
SELECT top 10
id
FROM dbo.IdentityTest2 See possible answers