I need to create a DTS package to regularly import an IRC server's nickserv DB into SQL server. The nickserv is a text file in the messed up format:n nickname password fullname lastdnse emaill hostmaski garbage garbage garbage
...that repeats over and over. Not every user has an "l" record, and some users have two or more of them.I need to extract nickname, password, and email only, at least for now. I've figured out how to do the import using a VB transformation script to just get the "n" rows, and skip everything else. Here's that script:Function Main() if DTSSource("Col001")="n" Then DTSDestination("nick") = DTSSource("Col002") DTSDestination("password") = DTSSource("Col003") DTSDestination("last_dns") = DTSSource("Col005") Main = DTSTransformStat_OK Else Main=DTSTransformStat_SkipRow End IfEnd FunctionHowever, I can't seem to figure out how I can grab the email info and associate it with the row of the table that was previously inserted. The order of the file is guaranteed to always be at least "n/e", so there's no danger of getting an e before an n.Any ideas?Thanks-b