Maaaaaagic Tables!!!
I had an interview earlier this week. An interview for a SQL developer position. It went fine. But. Question number X...
I had an interview earlier this week. An interview for a SQL developer position. It went fine. But. Question number X...
This article describes a real-world example of performance tuning index maintenance for a large table of approximately 1 billion rows.
Continuing the short series on extended properties, this article explains how to turbocharge the creation of extended properties
Today we have a guest editorial from Andy Warren that talks about the problems we sometimes run into when we must work with other people and make decisions. Sometimes getting the information from people, or giving it to them, is not as simple as we would like.
With a large-scale development of a database application, the task of supporting a large number of development and test databases, keeping them up to date with different builds can soon become ridiculously complex and costly. Grant Fritchey demonstrates a novel solution that can reduce the storage requirements enormously, and allow individual developers to work on thir own version, using a full set of data.
Things Go South
Recently I was troubleshooting a piece of software that archives data out of a very active import table....
In this article Brian Davey present a solution for changing the text in multiple stored procedures using T-SQL.
Longtime author Brian Kelley brings us a new article on security and Kerberos authentication in SQL Server.
Today we have a guest editorial from Stanley Popovich that talks about dealing with stress at work.
With SQL Server releasing new cumulative updates this week, Steve Jones talks about the patching strategy of SQL Server.
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
By Steve Jones
los vidados – n. the half-remembered acquaintances you knew years ago, who you might...
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
I'm trying to get this string_agg to put all the 'comments' into one result...
Comments posted to this topic are about the item Vectors in SQL Server 2025
Comments posted to this topic are about the item Odd Sequences
What values are returned from this code?
CREATE SEQUENCE NumericSequence
AS NUMERIC(5,1)
START WITH 1.0
INCREMENT BY 0.1;
GO
SELECT NEXT VALUE FOR NumericSequence
GO
SELECT NEXT VALUE FOR NumericSequence
GO See possible answers