Source Oracle / Target SQL Server
Source Sample data
select all_directions from table
--------------------------------------------------------------------------------
RDS_FLOAT_4(104.069, 29.8188, 148.7, 252.856)
RDS_FLOAT_4(184.739, 155.408, 207.478, 150.064)
.
1.9Billion rows
I want to replicate this to SQL Server in 4 columns. Each comma separated value will go to separate column. Please note this is comma separated but not fixed width data
e.g. RDS_FLOAT_4(104.069,29.8188, 148.7, 252.856)
RDS_FLOAT_4<-- not needed
104.069 <----north_value 29.8188<--- south_value 148.7 <--- east_value
252.856 <--- west_value
Can you provide a sample of colmap for this case?