The transaction log for database is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases

09-10-2012 I got this error today for one of my test databases. Following are the steps to solve this. Step 1 The error message gives a hint to look in the log_reuse_wait_desc column in sys.databases table. So we will just do it. This gave me following result for my database. name               log_reuse_wait_desc RP2_TEST    LOG_BACKUP IfContinue reading “The transaction log for database is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases”

ILT – How to Create a Simple ArrayList Within XAML

25-09-2012 Following is a sample to create a simple ArrayList in XAML. This most of the time serves as a simple straightforward data-source to test your controls. If you wondered like I did, Following is the definition of col and sys namespaces. Add these lines to the main tag (Window, UserControl, etc.) of your XAMLContinue reading “ILT – How to Create a Simple ArrayList Within XAML”