Viewing 7 posts - 1 through 7 (of 7 total)
Thanks Steve and everyone for the replies. These queries were extremely helpful!
July 22, 2021 at 3:17 pm
All,
Thanks a bunch for the help. Looks like everyone's replies got me what I was looking for. I did have one follow up, and i'll edit the original post if...
July 21, 2021 at 8:27 pm
Ahh. Sorry about that. Here ya go:
CREATE TABLE temp_docs (
begval VARCHAR(100)
,endval VARCHAR(100)
,volume VARCHAR(20)
,prefix varchar (50)
,padding INT
,begnum VARCHAR(50)
,endnum VARCHAR(50)
)
GO
insert into temp_docs (BegVal, EndVal, Volume, Prefix, Padding, begnum, endnum)
values(...
July 20, 2021 at 9:56 pm
That! is a valid question Dixie. I'm new to using SQL server regularly so saw an sample cursor that I could easily adapt and used it. Appreciate the simplification!
May 21, 2021 at 4:33 am
Large amount of email recipients (> 5000 per row). Final count of split values was ~73 million records
May 21, 2021 at 4:30 am
@thom-2 A -- Thank you for the suggestion! I was able to achieve my goal. For anyone looking to do something similar in the future, here's what I...
May 20, 2021 at 6:41 pm
@Ant-Green -- Thanks for the info! While this works well, like I said, I have input strings that are up to 314,000 characters long, and this looks to only parse...
May 20, 2021 at 3:20 pm
Viewing 7 posts - 1 through 7 (of 7 total)