I have the below query, giving an error that The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.
INSERT INTO ACCount (DocumentNo, AccNo, DueDate, [Description], DC, Amount, Amount1, Amount2, DateCreated, DateModified, [Type]) VALUES (40, 6000012, '14/12/2012 12:00:00 AM', N'', N'C', 365.70, 551292.750000000, 365.700000000, '14/12/2012 12:00:00 AM', '14/12/2012 12:00:00 AM', N'PI')
Unable to know what exactly is the error.
How could i resolve this?
Thanks in advance.