I'm trying to copy the results from a view to a table using:
insert into tableA
select * from viewB order by id;
I get the error message -
Msg 241, Level 16, State 1, Line 1
Conversion failed when converting datetime from character string.
TableA and ViewB have about 80 fields. Trying to figure out which one's might have a type mismatch will take forever. How can I determine what column is causing the error quickly?