Where would I put the conversion of date in this stored procedure?I want the date to be converted when it's entered into the DB and go in as 03/11/2010ALTER procedure [dbo].[UpdateClaim]@PIC char(2),@docPmt char(3),@LAF char(2),@DteIn datetime,@Remarks varchar(255),@DteToFO datetime,@DteBack datetime,@Results char(1)AS update Dataset [PIC] = @PIC,[docPmt] = @docPmt,[LAF] = @LAF,[DteIn] = @DteIn,[Remarks] = @Remarks,[DteToFO] = @DteToFO,[DteBack] = @DteBack,[Results] = @Results,Where pic=@pic