I am working on some SQL data maninpulation using stored procedures. I have a table with the following fields:
FullName
LastName
FirstName
MiddleName
SuffixName
I have created a CLR procedure that can programatically split the FullName field into the individual name pieces. I started at first using datasets, but the amount of data being formatted is extremely large (more than 100,000 at a time). So, is there a way for me to create a TSQL stored procedure, and have it pass specific fields to my CLR procedure to split and update the other name fields? I've read about cursors in stored procedures, but I've never used them.
Start Free Trial