1 As said, dont use varchar to store dates. Use DATETIME datatype
2 Create another column with proper DATETIME datatype and update that column by
Update table
set datetime_column=dbo.proper_date(replace(varchar_column,'/',''))
(Use the function from http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=82164)
3 Let the front end application do the formation
Madhivanan
Failing to plan is Planning to fail