Apr 24, 2009

Line Feeds in VB.NET

 
 
 

TSQL SQL UPDATE FROM

 
 
 

Substring() Method VB .NET

 
 
 
 

C# VB.NET SqlCommand ExecuteScalar

 
 
 

VB.NET string processing

 
 
 

TSQL SET CONCAT_NULL_YIELDS_NULL - string concatenation with null

 
If you set SET CONCAT_NULL_YIELDS_NULL to OFF, when you concatenate a string with null, the end result is still the string you put in.
 
If you set SET CONCAT_NULL_YIELDS_NULL to ON, then when you concatenate a string with null, the end result is NULL.
 
 
 
 
 

Why Debug command is disabled for my SSIS package?

 
If you have a dtsx SSIS package and wonder why you cannot run / debug the package inside Visual Studio, chances are you need a project associated with it.
 
 

DATEPART Transact-SQL tsql

 
 
If you want to know the day of the week from a given date, or a host of other handy date functions. Check this out.
 
 
 
 

Understanding and Using .NET Partial Classes