Do you mean whether you can validate the ranges of the dates within the stored procedure that is being called? You can - for example:IF (@startDate < '20120101' OR @startDate > GETDATE())
BEGIN
RETURN;
END
That is just an example - you can make it as sophisticated as you wish to.