Owning the Spelling Suggestion Feature
To create your own spelling suggestion feature, you need a look-up with correct spellings and misspellings. I walk you through it.
To create your own spelling suggestion feature, you need a look-up with correct spellings and misspellings. I walk you through it.
In this update from the past week Steve Jones looks at leaks in encrypted disks and Web 2.0 development.
It is irritating, sometimes alarming, for the user to be confronted by the 'deadlock message' when a deadlock happens. It can be a tiresome business to prevent them from occurring in applications. Fortunately, the profiler can be used to help DBAs identify how deadlocking problems happen, and indicate the best way of minimising the likelihood of their reappearance.
What's important in an IT employee? Steve Jones talks about the skills and measurements CIOs want today and tomorrow.
What's important in an IT employee? Steve Jones talks about the skills and measurements CIOs want today and tomorrow.
What's important in an IT employee? Steve Jones talks about the skills and measurements CIOs want today and tomorrow.
While working on a project recently I was asked to develop a mechanism that would provide the dates for state and federal holidays in a given year. Since this project deals with all states and territories of the United States, the list had to be comprehensive and the client asked that this list be in the form of a SQL query calculated on-the-fly, rather than a static list.
Steve Jones talks about the value of software maintenance and how you should view their value.
Steve Jones talks about the value of software maintenance and how you should view their value.
Steve Jones talks about the value of software maintenance and how you should view their value.
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...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
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
Comments posted to this topic are about the item Everything is the right question...
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