About the author

Steven HarmanSteven Harman is a passionate developer who believes that writing great software isn't just a job, its a craft.

ASP.NET MVP

For recent posts and more about me, scroll to the bottom.

Subscribe

  • Subscribe to my feed. via RSS
  • Subscribe via email via email

Jobs

Badges

  • Subtext Project
  • Support Subtext
  • HiddenNetwork.com Banner

sqlserver

There are 4 entries for the tag sqlserver

A Better Search and Replace for Your Database

The ability to search for and replace a substring of text is such a useful, and often necessary, bit of functionality that nearly every text editor on the planet has it built in. However, the tool we often use to hold our text based data, the ubiquitous relational database, typically has very poor support for doing search and replace out of the box. Its so poor in fact that I’ve actually discussed this very topic, Search & Replace for your Database, before! However, as was noted in the comments to that post, my solution hack is not 100% effective....

Get Northwind, the Database That Won't Die, On SQL Server 2005

I am getting ready to put together a few sample applications to show off some of my favorite JavaScript libraries and demonstrate just how easy they make building AJAX enabled web applications. To simplify the process I was planning to use a little SubSonic magic to wire up REST interface to my database. But what to what database? Hello Northwind! Well the Northwind database, naturally! Problem is, I use SQL Server 2005 on both my main dev box and my laptop and it doesn’t include the sample databases. Actually, that’s entirely not true. Hello AdventureWorks...? As...

SQL Server Installation and MSDTC

While setting up a new VM for an upcoming project I ran into an issue while trying to install SQL Server 2005. During the step with the setup wizard checks all of the necessary components and system configuration settings on your machine it gave me a warning message about the COM Plus catalog Requirement. The message dialog had the following messages: COM Plus Catalog Requirement If SQL Server Setup fails, Setup will roll back the installation but my not remove all .manifest files. The workaround is to rename the files and then rerun Setup. For more information, see...

Avoiding the '401 Unauthorized' Error when Using the ReportViewer in Your Web Application

A couple of days ago I was using ASP.NET WebForms and the new ReportViewer control to put together a quick demo for rendering SQL Server Reporting Services (SSRS) reports right in your web application. If you're not familiar with the ReportViewer control, Thom Robbins put together a great screencast to introduce the ReportViewer control. How I used the control I was running the control in remote mode - meaning it pulls the reports down from a fully managed SSRS installation, and then renders them directly in the web browser - all from within my application. I was also using Windows Authentication because the client required it....