Month: July 2005
FreeCycle
SQL Server Profiler and Query Analyzer
It would make a great introduction to support staff.
However I would like a more detailed article. This only touches the surface and goes one step beyond the obvious. I would like to see a more detailed article on this. In particular how to save a trace so that the profiler can use it – useful tips like what events are required – the basics that Microsoft forgot to put in their help files.
The article does reference “Microsoft SQL Server 2000 Performance Optimization and Tuning Handbook by Ken England (Digital Press, 2001)“
RSS as a generalised version of SQL
Using RSS as a generalised SQL.
I definately need to consider this more.
Codegen at Runtime
However I have recently found a use for it at runtime (although infrequently).
The application that I work on has an archive process that takes the older data away to a secondary database. Periodically a new archive database is created.
We used to use dynamic sql within a stored procedure to move the data from the live to the archive. Strings were constructed within a stored procedure and executed. This turned out to be too slow.
I replaced the dyamic sql with a set of stored procedures that were regenerated at archive creation time using XSLT. This is exactly the same technique as traditional code generation, but has provided a massive speed increase (3X to 7X improvements have been seen).
TDD Pragmatic Approach
- Write a test, ensure that it fails [RED]
- Make the smallest possible change to get the test to work [GREEN]
- Refactor. Simplify the code to eliminate duplication and keep the design clean [REFACTOR]
- Repeat
The biggest mistake that people make when trying to get into test driven developement is to try to write all of the tests up front. This process is all about small error free steps.
The trick is to keep the tests small and focused. Don’t try to test too much with one test. If they are too fragile then you will spend your entire time rewriting your tests. As I write the tests I oftern find myself with a substantial helper object that performs the common tasks for me. The tests end up as documentation for the system.
Another important thing to remember is that this cycle is the formal version akin to the full blown scientific method:
- State Hypothesis
- Design an experiment, then perform it
- Identify whether Hypothesis is true or false
- Repeat
In addition if you have a project covered with automated tests adding new ones becomes simpler. It is especially powerful if you need to maintain several branches of a given codebase. If the helper object can keep it’s interface untouched across the streams then the tests can stay largely untouched.
I have sucessfully used this when porting an application from one database to another, but the technique would work in the same mannerif you were to change langauages. The trick is to create an abstract interface to test against. You write helper objects that implement that interface against the old and new systems. You write the tests against the old system and then implement the new in order to get the tests to build.
Konfabulator
This is great for those tiny utilities.
Open Workbench
It can be freely downloaded from sourceforge.
It fails to mention that you need a Java Runtime Environment installed.
So far it looks OK.
Dia
It does most of what Visio does but has a superior price tag.
It still has it’s rough edges but it looks like a promising project.
Codegen and Generative Programming
Here is the overview of codegen as implemneted in an OO-language: here