This WIKI page address the following error:
“The conversion of char-value to a datetime has resulted in a datetime outside the range”
All Control internal SQLs use the US format for dates (dd/mm/yy). This error can occur when the date formatting of the SQL server does not match the date formatting being used by Control.
High. Control is not usable if the day of the month is > 12. Even when less, the results are scrambled dates!
The following queries can be used to test for this problem. The first query should work if the system is configured for US dates. The second query uses and international date format. It should fail on a working system, but will run on a mis-configured system.
This query should run successfully. If it does, the date format is set correctly in SQL.
SELECT top 15 * FROM Journal WHERE ID >0 AND ClassTypeID = 8916 AND QueryStartDateTime = '03/28/2010 2:49 PM'
This query should fail. If it does not, the date format is not set correctly in SQL.
SELECT top 15 * FROM Journal WHERE ID >0 AND ClassTypeID = 8916 AND QueryStartDateTime = '28/03/2010 2:49 PM'
Several things must be done to resolve this problem: