Software development stuff.

2008-10-13

Enable or Disable Triggers on SQL Server 7.0

Icreated a trigger to prevent deletion of data from a table. but of course in some cases (Database initialization) ı need to override the trigger. Here's how: Enable or Disable Triggers on SQL Server 7.0

2008-10-06

Log unexpected exceptions in a windows service and in an APPDomain in general

My services stopped without reason and I had no thing on the log except the System Event Log. A good solution to log fatal errors is to use the event AppDomain.CurrentDomain.UnhandledException (see Cannot catch Exception in a thread - .NET C#)