Hi,
This is usually caused by differing Windows locales in the different SQL environments.
To format the date in c# use the DateTime.ToString() method :
DateTime MyDate = DateTime.Now;
String FormattedDate = MyDate.ToString("yyyyMMdd hhmmss");
You...