SQL Server Development

I have been developing with SQL Server since around the 6.5 version, all the way to the 2005 version.  SQL Server 2005 has so many sophisticated features that almost no one knows about them all or uses them to their full advantage.

One theme I will push repeatedly is using SQL Server to do things for you so you don't have to write as much procedural code.  My first example is using SQL Server to output an RSS feed.  This technique for outputting formatted XML eliminates having to write and maintain processing code that you don't need. 

Also, check out my article Dyamic Data Display in Silverlight.  I use a similar technique to generate XAML in T-SQL instead of procedural code.

Articles List  


SQL Server
Deploying SSRS Reports to Sharepoint
11/14/2008 - I explain how I set up the deployment URL paths to deploy an SSRS project to Sharepoint, and how to use those reports in ASP.Net with a ReportViewer control. Read More...

RSS XML from SQL Server 2005
07/03/2007 - This article will show you how to output an RSS XML document (a 'feed') directly from SQL Server 2005, all ready to go, and no need to do XML processing in a procedural language, or with XSLT. Read More...