Uri,
I have been looking at that all morning and trying to understand it fully.
using the following query
SELECT MyDate, ISDATE(CommissionDate) AS Expr1 FROM MyTable
this returns a 1 or 0
the problem with ISDATE() is that it seems to rely on an american date
format
so 13/02/2003 is invalid whereas 02/13/2003 is valid
being in the UK the function appears to be as much use as a chocolate fire
guard :)
Thanks
Mike
> Mike
> Take a look at ISDATE () function
[quoted text clipped - 12 lines]
>>
>> Mike
Mike Fellows - 31 Mar 2008 13:51 GMT
the UK problem can be fixed by using
SET DATEFORMAT dmy;
- got it working now
Thanks again
Mike
> Uri,
>
[quoted text clipped - 34 lines]
>>>
>>> Mike