Truncating SQL Server Log Files Posted on November 12, 2003 You can get the name of the log file for your database by looking in the sysfiles table. [Read More] Tags: sqlserver
SQL Server Cursors Posted on October 28, 2003 You can use cursors in SQL Server stored procedures to process data already in the database and take action accordingly. These can be used just like recordsets within standard code - for example: [Read More] Tags: sqlserver t-sql
SQL Server - Changing Object Ownership Posted on October 16, 2003 For example, to change the owner of table MyTable to user MyUser, just run the predefined stored procedure sp_changeobjectowner: [Read More] Tags: sqlserver t-sql
Batch File Variable Tips Posted on October 8, 2003 Catching unknown / dynamic variables [Read More] Tags: .net c#
.NET Debugging Tips Posted on October 3, 2003 Conditional Debugging Attribute [Read More] Tags: .net c#