hello following is the Problem; let me know if there is any way to solve it...
Problem : need to copy a table T1 to another table T2. But T1.Col2 should be split as T2.Col2 and T3.Col3 while copying.
here is the query i used;
Insert INTO T2 (Col1,Col2)
SELECT Col1,
substring(
CAST(Col2 AS varchar(30)),
1,
patindex('% %', CAST(Col2 AS varchar(30)))-1
),
substring(
CAST(Col2 AS varchar(30)),
patindex('% %', Len(CAST(Col2 AS varchar(30))))+1,
Len(Col2)
)
from T1
I am getting the following error :
Conversion failed when converting date and/or time from character string.
Thanks in advance.