Python and Tweepy
One of the projects that’s been on my list lately is to programmatically access Twitter for a few ideas I...
2015-11-20
820 reads
One of the projects that’s been on my list lately is to programmatically access Twitter for a few ideas I...
2015-11-20
820 reads
2015-11-20
1,808 reads
Most DBAs don't get involved with budgets at work, but we are affected by them. Steve notes you might want to understand how budgets work.
2015-11-19
137 reads
Should we consider the relational model the default and only after having a good reason look at a NoSQL platform? Steve Jones has a few comments.
2015-11-18
109 reads
A quick SQL Prompt tip to automatically add semicolons to your code.
2015-11-18 (first published: 2015-01-20)
5,825 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as#SQLNewBloggers.
I’ve...
2015-11-18
1,361 reads
2015-11-18
1,432 reads
The laws and morals regarding privacy aren't well defined, but Microsoft is making a stand.
2015-11-17
115 reads
I’ve been to the SQL Saturday in Washington, DC a few times and I’m looking forward to going back. It’s...
2015-11-16
721 reads
2015-11-16
1,544 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