Error Handling in Nested Procedures and Logging Custom Errors
Longtime author Leo Peysakhovich brings us a new article on error handling when you have procedures nested inside each other.
Longtime author Leo Peysakhovich brings us a new article on error handling when you have procedures nested inside each other.
Red Gate Software wants to recognize and reward exceptional DBAs with this new program.
Intel is moving in the direction of more and more cores on a single CPU, so what does that mean for programmers?
In the previous installment of our series, we presented a variety of reasons that might influence your decision to upgrade a full-fledged member of the SQL Server 2005 family. This article discusses the actual implementation of this process, pointing out additional factors that might affect its complexity.
Security can be a hassle, but Steve Jones talks about why we sometimes put up with the difficulties of implementing strong security.
Security can be a hassle, but Steve Jones talks about why we sometimes put up with the difficulties of implementing strong security.
Security can be a hassle, but Steve Jones talks about why we sometimes put up with the difficulties of implementing strong security.
Storage area networks (SANs) improve SQL Server performance. Set up SANs on SQL Server with these best practices on migrating to, and configuring SANs.
When do you decide that enough is enough? When does it make sense to let some bugs go and fix them later? Steve Jones comments on the decisions you sometimes make.
When do you decide that enough is enough? When does it make sense to let some bugs go and fix them later? Steve Jones comments on the decisions you sometimes make.
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