Filetable–Nesting folders and files
In previous posts I showed how to create a folder in a Filetable and also how to the create (and...
2014-05-12
1,086 reads
In previous posts I showed how to create a folder in a Filetable and also how to the create (and...
2014-05-12
1,086 reads
Backups are important in most companies and today Steve Jones asks who has the responsibility in yours.
2014-05-09
194 reads
One of the things that’s annoyed me in the last few versions is that Books Online isn’t smoothly installed for...
2014-05-08
887 reads
Steve Jones doesn't think that companies can just do away with a DBA. Apparently there are people on the NoSQL platform that agree.
2014-05-08
258 reads
I saw a talk from Joe Sack (b | t) on the cardinality estimator (CE) in SQL Server 2014 and found...
2014-05-08 (first published: 2014-04-30)
3,523 reads
Steve Jones thinks that the attitudes of managers need to change if we want to be more productive in the future.
2014-05-07
178 reads
I was looking recently for some sort of guideline that would help me ensure that code was securely written. I...
2014-05-07
838 reads
2014-05-07
1,728 reads
I’ve been playing with Filetable and I was asked an interesting question. Can I move files to a folder programmatically?
It’s...
2014-05-06
1,824 reads
Do you have a vocation or career? Steve Jones talks a bit about the difference today.
2014-05-06
162 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