Have you ever needed to debug a web application request for an application for which you do not have the source? There is a neat little application that can do it transparently, without needing you to reconfigure anything. It's called Fiddler, and you can download it here.
Some screenshots:
Debugging web application requests
0 comments Filed Under: Web Debugging Proxy
How to make video recordings of screen activity on your computer
A colleague found a nice tool for creating videos from activity on your computer, like when you show someone how to navigate your website, etc. It's called CamStudio, and is free. Get it here.
0 comments Filed Under: Video Recording, Windows XP
Common Table Expression (CTE)
Do you know what a Common Table Expression is? It is a temporary named result set that can make your SQL easier to read and maintain.
USE AdventureWorks;You can find some additional info here.
GO
WITH DirReps(ManagerID, DirectReports) AS
(
SELECT ManagerID, COUNT(*)
FROM HumanResources.Employee AS e
WHERE ManagerID IS NOT NULL
GROUP BY ManagerID
)
SELECT e.EmployeeID, e.BirthDate, ISNULL(DirectReports, 0) as DirectReports
FROM DirReps as d right outer join HumanResources.Employee as e on d.ManagerID = e.EmployeeID
ORDER BY e.EmployeeID;
GO
0 comments Filed Under: Common Table Expression, SQL Server
Adding more storage for mythbuntu (and other uses)
Since my mythbuntu box is old and does not have onboard SATA support, I deciced to build a storage server with new hardware and record from the mythbuntu box to an NFS share on the storage server.
0 comments Filed Under: FreeNAS, Intel Atom, mythbuntu, NAS, RAID
MyTechEd #2 - Visual Studio Tips and Tricks
Presenter: Mike Palermo
0 comments Filed Under: Code Snippets, TechEd, Visual Studio 2008
My TechEd #1 - Dashboards & Scorecards
Presenter: Gavin Russell-Rockliff
0 comments Filed Under: Dashboards, MOSS, SQL Server, TechEd
WITH NOLOCK = dirty rotten scoundrels
A comment by a presenter at a SQL Server tuning session at TechEd Africa 2009 sparked my interest, so I decided to investigate.
0 comments Filed Under: NOLOCK, SQL Server