Start SQL Server in Single User Mode
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
3,591 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
3,591 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
735 reads
2015-08-03
1,595 reads
An invitation to hack United's IT systems has resulted in vulnerabilities being found and hackers rewarded for disclosing the issues.
2015-07-30
100 reads
Steve Jones discusses the decision to hire someone that fits in with your culture at work, and what that means.
2015-07-29
145 reads
I wrote recently about my philosophy for service accounts, and wanted to add a few more thoughts.
Security is important for...
2015-07-28
1,510 reads
An amazing visualization of basketball players has Steve Jones encouraging you to find your own pet project and showcase some skills.
2015-07-28
137 reads
This is a bit of an off topic post from the technical stuff, but there’s a bit of a tie-in,...
2015-07-27
1,040 reads
Can you deploy your database changes without any downtime? Steve Jones has a few notes.
2015-07-27
123 reads
The challenges of getting enough resources for our projects aren't always apparent.
2015-07-27
140 reads
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