Displaying the most recent of 85 posts written by

Vendoran

Project Factor Triangle

When I was in school for my masters degree, one of my teachers informed the class of a principal of the project factor triangle (I’m sure they had a snazzy name for it, but I can’t remember what it is).  This was pretty much done as a side note afterthought, but it’s stuck with me.  [...]

SQL 2005 Current Query Activity

SELECT    sder.session_id AS [SPID],    sdes.login_name AS [Login],    sd.name AS [DBName],    sder.start_time AS [Start Time],    sder.status AS [Status],    sder.command AS [Command],    sdet.text AS [SQL Text],    sder.percent_complete AS [Pct Cmplt],    sder.estimated_completion_time AS [Est Cmplt Time],    sder.wait_type AS [Wait],    sder.wait_time AS [Wait Time],    sder.last_wait_type AS [Last Wait],    sder.cpu_time AS [CPU Time],    sder.total_elapsed_time AS [Total Elpsd Time],    sder.reads AS [...]

Testing

A colleague of mine Aaron Erickson has an interesting post on how deep testing should go here.  This brings up some interesting points, for example in SQL Server I might test my own function, however I don’t test SQL Functions like GETDATE, instead I assume they work properly.  If I bring in CLR functions, the [...]