hi,i have this sql procCREATE PROCEDURE dbo.ListeLettreFichier -- Add the parameters for the stored procedure here @DateDebut datetime, @DateFin datetimeASBEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; -- Insert statements for procedure here SELECT dbo.CSR_FILE.FIL_NAMESEND FROM dbo.CSR_FILE WHERE FIL_DATESEND between @DateDebut and @DateFin ENDGO
when i excecute , i got this errorUSE [RECLACSR-DB]GODECLARE @return_value intEXEC @return_value = [dbo].[ListeLettreFichier] @DateDebut = 2012/05/01, @DateFin = 2012/05/30SELECT 'Return Value' = @return_valueGOMsg 102, Level 15, State 1, Line 5Syntaxe incorrecte vers '/'.can you pliz help...Marclas