Viewing 3 posts - 1 through 3 (of 3 total)
Hi Martin,
Try to load the file into a temporary or a stage table with a varchar datatype for the datetime column and then load into the final table with conversion...
February 20, 2008 at 1:19 am
#780106
Thanks!
It works as intended.
/Martin
February 19, 2008 at 5:28 am
#779660
Hi
To find duplicate ( or even more than duplicates ) try this
select
field1,
field2,
count(*)
from table
group by
field2
having count(*)>1
where field1, field2 are the fields that will be checked for duplicates.
February 13, 2008 at 3:45 am
#777734