Pimp My Data Center
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
Sizing a database can be one of the most arduous tasks a DBA, analyst or developer must attend to. It?s time consuming and more hours go into analyzing the database than actually sizing it. This article focuses on how to monitor the database?s growth after its deployed and contains some tips on how to size it before deployment. We will also dive a little into how to benchmark your database against a robust data load.
Here the author answers questions regarding the Entity Framework and provides an understanding of how and why it was developed.
This paper explores several ideas to improve the query and data modification performance of the XML data type in Microsoft SQL Server 2005. To get the most value from this paper, you need to be familiar with the XML features in SQL Server 2005. For background material, see XML Support in Microsoft SQL Server 2005 and XML Best Practices for Microsoft SQL Server 2005 on the Microsoft Development Network (MSDN)
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