InfoQ

Topic/Tag specific view

All content and news on InfoQ about SQL Server 2005


News about SQL Server 2005

Microsoft SQL Server 2005 Driver for PHP Released

Community
.NET
Topics
SQL Server

Version 1.0 of the Microsoft SQL Server 2005 Driver for PHP has been released, allowing greater interoperability between PHP and MS SQL 2005. The driver is available for download on MSDN, and the source code for the driver is available on Code Plex.

Implementing NOLOCK with LINQ to SQL and LINQ to Entities

Community
.NET
Topics
Data Access

Scott Hanselman recently posted a really useful article on his blog covering the NOLOCK hint when using LINQ to SQL and LINQ to Entities. The problem is actually how to get the SQL generated by LINQ queries to use the NOLOCK hint as SQL developers are accustomed.

SQL Server Data Services: Microsoft's Answer to Amazon S3

Community
.NET,
SOA
Topics
SaaS

Microsoft has announced SQL Server Data Services (SSDS) at MIX08. Being a storage service on the web, SSDS is Microsoft's Amazon S3 competitor.

Database Virtualization - Is it worth it?

Community
.NET,
Architecture
Topics
Virtualization,
Data Warehousing

Hosting server applications inside VM images is all the rage today. The ability to quickly move a virtual server from one machine to another as needs change is a big win for IT departments. But can this be applied to heavyweight systems like SQL Server? Conor Cunningham says no.

SQL Server Best Practices Analyzer to be Integrated into SQL Server 2008

Community
.NET
Topics
Code Analysis,
Data Access

Microsoft is looking to change how SQL Server is managed by incorporating the SQL Server Best Practices Analyzer into the core of SQL Server 2008. This new feature, known as the Declarative Management Framework, allows for proactive enforcement of database policies.

Post-VS 2008-Technology: LINQ to XSD and LINQ to Stored XML

Community
.NET
Topics
.NET Framework

Today, Shyam Pather, Principal Development Lead on the Data Programmability Team at Microsoft, is giving a presentation on LINQ to XML: Visual Studio 2008, Silverlight, and Beyond at the XML 2007 Conference in Boston. He talks about the current and future technologies surrounding LINQ to XML.

Microsoft Ups Their Support for PHP

Community
.NET
Topics
Web Frameworks

PHP is a cornerstone of LAMP development. In an attempt to lure PHP developers off Linux and MySQL, Microsoft is beginning to offer deep support for PHP in IIS 7 and SQL Server.

Recursive Selects using Common Table Expressions

Community
.NET
Topics
Data Access,
SQL Server

Relational databases are great for storing most forms of structured data. The most notable exception is recursive data. Tree-like structures, essential for menus, normally require awkward stored procedures to efficiently return. SQL Server 2005 does have an answer though.