(SSIS topic) I have a Full Name column containing names with middle initial and names without middle initial. How can i get the middle initial and put it in the Middle Initial column. How can I solve this using SSIS derived column.
|Middle Initial |Full Name |
| |Carl T. Simpson |
| |Karen Thompson |
| |Donald J. Clinton |
| |Samantha Shelby |
This is the outcome that i want to achieve.
|Middle Initial |Full Name |
|T. |Carl T. Simpson |
| |Karen Thompson |
|J. |Donald J. Clinton |
| |Samantha Shelby |