Hi many guys asked me why they were getting in their log, the SQL error:
error to convert "Varchar in Datetime", so i took a look on EPvPers and i didn't see (maybe i'm wrong o.o) any post with the problem solved.
It happens with
Warehouse dcing when trying to store items or the
notice board !
It's not really a Fix but more a specific attention to pay on SQL configurations.
SQL maybe tried to save the datas in a
wrong date format !
To check if you're in this case, run the next query:
Code:
SELECT 'dateformat: ' + date_format FROM sys.dm_exec_sessions WHERE session_id = @@spid
If the result is :
Code:
1 . Dateformat: mdy
then everything is good if the result is :
Wrong format, just follow the instructions.
1: Go to your Database
properties
2:
Advenced page
3: Check your "default language" and select :
us_english or
English but not
British_english
Found it by my self and i hope it'll help you in your development !
*Greetings*