Software Projects: the important boring bits
Phil Factor on the sort of boring expertise that will help you thrive as a consultant.
Phil Factor on the sort of boring expertise that will help you thrive as a consultant.
Computers aren't necessarily more infallible than humans, and they aren't necessarily even going to make better decisions. We still need humans in the decision process.
Tibor Nagy explains how to find the root cause of SSL encryption configuration problems in Microsoft SQL Server.
We have all had our innovative solutions and proposals shot down by leads, managers and directors. This article addresses some of the causes and tips to improving the success rate for getting your ideas into the priority list.
In this article we will take a look at one of the new technology that was introduced in SQL Server 2008 for Auditing.
An enhancement to a Phil Factor puzzle gives you a chance to play scrabble in T-SQL.
In this LIDNUG webinar, Mitchel Sellers walks through performance tuning best practices, and investigates how developers can use ANTS Performance Profiler to explore their application code and the SQL queries and execution plans behind it.
Create a repository of all your database devices and stay informed about changes in their size and usage.
Have you learned anything new lately? Steve Jones asks the question after an interesting T-SQL Tuesday.
How can you get a list of columns that have changed within a trigger in T-SQL? How can you see what bits are set within a varbinary or integer? How would you pass a bitmap parameter to a system stored procedure? Phil Factor has answers.
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