Due Diligence
How can you perform due diligence on new employees? There are a variety of ways, but Steve Jones has an idea that might help you nudge a potential employer in the direction you want them to move.
How can you perform due diligence on new employees? There are a variety of ways, but Steve Jones has an idea that might help you nudge a potential employer in the direction you want them to move.
Steve Jones is putting out an open call for guest editorial pieces in the spring of 2014. If you're interested, read on.
Part two of our series looks at the partitioning strategy to separate customers' data, providing security and performance.
Marcin Policht reviews security related challenges of Microsoft Azure Software as a Service-based SQL Database, focusing in particular on the SQL Server and database-level firewall access control functionality and methods that can be employed to implement it.
This article describes a way to automatically restore multiple database backups from a directory.
Consolidating SQL Server instances is something Steve Jones has done in the past and he thinks we'll all do more of in the future.
Simple-Talk sat down with David Bick, a Red Gate Product Manager, to discuss his work on SQL Monitor and why passively monitoring SQL Server just doesn’t cut it anymore.
Please join us on Saturday, May 3rd, 2014, as both business analysts and IT professionals come to learn and network with experts for the first SQLSaturday Business Analytics edition. Please register while space is available
Views that use implicit conversion to return result sets may use a different query plan than the statement executed in query analyzer.
This beginner's guide to Wait Stats by Jonathan Kehayias and Erin Stellato is a free PDF download brought to you by SQL Skills and Simple-Talk.
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