-79802

Not enough tokens are specified in the string representation of a date value

This error occurs because the date string specified does not have the minimum number of tokens or separators needed to form a valid date value (composed of year, month, and day numeric parts). For example, 12/15/98 is a valid date string representation with the slash character as the separator or token. But 12/1598 is not a valid date string representation, because there are not enough separators or tokens.

To fix the problem, modify the date string representation to include a valid format for separating the day, month, and year parts of a date value.