conversion of a varchar data type to a datetime data type resulted in an out-of-range value

后端 未结 7 2317
梦毁少年i
梦毁少年i 2020-11-27 06:33

I have the following piece of inline SQL that I run from a C# windows service:

UPDATE table_name SET 
    status_cd = \'2\', 
    sdate = CAST(\'03/28/2011 1         


        
相关标签:
7条回答
  • 2020-11-27 07:18

    It's a date format issue. In Ireland the standard date format for the 28th of March would be "28-03-2011", whereas "03/28/2011" is the standard for the USA (among many others).

    0 讨论(0)
  • 2020-11-27 07:23

    I know that this solution is a little different from the OP's case, but as you may have been redirected here from searching on google the title of this question, as I did, maybe you're facing the same problem I had.
    Sometimes you get this error because your date time is not valid, i.e. your date (in string format) points to a day which exceeds the number of days of that month! e.g.: CONVERT(Datetime, '2015-06-31') caused me this error, while I was converting a statement from MySql (which didn't argue! and makes the error really harder to catch) to SQL Server.

    0 讨论(0)
  • 2020-11-27 07:29

    I think the best way to work with dates between C# and SQL is, of course, use parametrized queries, and always work with DateTime objects on C# and the ToString() formating options it provides.

    You better execute set datetime <format> (here you have the set dateformat explanation on MSDN) before working with dates on SQL Server so you don't get in trouble, like for example set datetime ymd. You only need to do it once per connection because it mantains the format while open, so a good practice would be to do it just after openning the connection to the database.
    Then, you can always work with 'yyyy-MM-dd HH:mm:ss:ffff' formats.

    To pass the DateTime object to your parametrized query you can use DateTime.ToString('yyyy-MM-dd HH:mm:ss:ffff').

    For parsing weird formatted dates on C# you can use DateTime.ParseExact() method, where you have the option to specify exactly what the input format is: DateTime.ParseExact(<some date string>, 'dd/MM-yyyy',CultureInfo.InvariantCulture). Here you have the DateTime.ParseExact() explanation on MSDN)

    0 讨论(0)
  • 2020-11-27 07:31

    Ambiguous date formats are interpreted according to the language of the login. This works

    set dateformat mdy
    
    select CAST('03/28/2011 18:03:40' AS DATETIME)
    

    This doesn't

    set dateformat dmy
    
    select CAST('03/28/2011 18:03:40' AS DATETIME)
    

    If you use parameterised queries with the correct datatype you avoid these issues. You can also use the unambiguous "unseparated" format yyyyMMdd hh:mm:ss

    0 讨论(0)
  • 2020-11-27 07:31

    i faced this issue where i was using SQL it is different from MYSQL the solution was puting in this format: =date('m-d-y h:m:s'); rather than =date('y-m-d h:m:s');

    0 讨论(0)
  • 2020-11-27 07:35

    But if i take the piece of sql and run it from sql management studio, it will run without issue.

    If you are at liberty to, change the service account to your own login, which would inherit your language/regional perferences.

    The real crux of the issue is:

    I use the following to convert -> date.Value.ToString("MM/dd/yyyy HH:mm:ss")

    Please start using parameterized queries so that you won't encounter these issues in the future. It is also more robust, predictable and best practice.

    0 讨论(0)
提交回复
热议问题