Always remain updated about current software development trends

Articles having tag: SQL2008

Cache IQueryable for Better LINQ-to-SQL Performance

An approach to improve LINQ-to-SQL performance while preserving maintainability over DataReader.

A scheduler GUI for SQL Server Agent

An alternative to SQL Server Management Studio for scheduling SQL Server Agent jobs

List SQL Server table column name as rows

This is an alternative for "List SQL Server table column name as rows"

Null value converted into "default"

I think since the SQL server expects DBNull.Value instead of null, when employeeSocialTitle is null, it is replaced with default. To avoid this the null coalescing operator can be used as follows:cmd.Parameters.Add("@employeeSocialTitle", SqlDbType.Char, 5).Value...

List SQL Server table column name as rows

This is an alternative for "List SQL Server table column name as rows"