Shrinking your SQL Server Log File

Aug 05, 09 Shrinking your SQL Server Log File

Posted by in Misc. Tips

Yesterday I received a low disk space notification from one of our production boxes which gave me a chance to flex my SQL Management muscles before the finally atrophy completely.  Of course, it took me a bit to remember how to really shrink the log file as the SQL Server Management studio doesn’t seem tactually do...

read more

LINQ and Data Persistence

The persistence mechanism within LINQ can bite you if you aren’t careful.  The framework will persist a local copy of the data, so be careful when making database edits directly as this can cause the data in the application to become out of sync with the data LINQ believes is available. It is necessary to recycle the...

read more

LINQ – Design Guidelines

Earlier, my business partner forwarded me a link to a great article by Mircea Trofin that covers, with examples,some great design guidelines for using LINQ and developing/extending with new types, libraries and the like. The article is a great read for those of you who like an architectural view. Check it out: Click...

read more