I want to separate the single col data into multiple columns. I have a column named LocationCode which is of varying length in a table.
Sample Data :
LocationCode (col name)
100.23432.356345.6765634.34324.5645.F
100.2343.565465.56756765756756.4535435345.76466.F
200.234324234.46565466456.678678678678.543545445.43243243.F
1502.23.5.56546.7657767575.567567.MGR
Note : Separate all these into different column. Expected Output :
Column1   Column2   Column3     Column4      Column5    Column6    Column7
100       23432     356345      6765634       34324      5645         F
100       2343      565465   56756765756756  4535435345  76466        F
200    234324234  46565466456  678678678678  543545445  43243243      F
1502      23           5          56546     7657767575   567567      MGR
My sample data is separated by delimiter. and length of integer value differs. The newly formed columns should be separated by a delimiter.
 
     
     
    