The Balance of Resources
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
Can we trust users to make good decisions about what to install on their devices? Steve Jones says that the Apple iPhone model has some good advantages and it might work well for SQL Server as well.
Learn the basics of Event Notifications from MVP Jonathan Kehayia. This article will show you how to create customized responses to events in SQL Server 2005/2008.
Can we trust users to make good decisions about what to install on their devices? Steve Jones says that the Apple iPhone model has some good advantages and it might work well for SQL Server as well.
Can we trust users to make good decisions about what to install on their devices? Steve Jones says that the Apple iPhone model has some good advantages and it might work well for SQL Server as well.
Can we trust users to make good decisions about what to install on their devices? Steve Jones says that the Apple iPhone model has some good advantages and it might work well for SQL Server as well.
My company is heavily dependant on SQL Server transactional replication and once in awhile the default alerts are not sufficient and sometimes we want to be able to disable alerts when we perform maintenance. In this tip I will show you a few scripts I have implemented to allow me to better manage our transactional replication.
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
Some of the expressions and functions that have come in handy while developing reports in SSRS
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