TRG and NCOA formats

Hello,

We have recently started working with TRG and are hoping to be able to use the results from their NCOA scrub to pull address updates back into our Tessitura database.  Is anyone out there doing this and willing to share an import file format or any best practices for pulling in TRG specific returns? 

Thanks,

SADIE PRATER

Systems Analyst

Perot Museum of Nature and Science

P 707.986.8377 | sadie.prater@perotmuseum.org

Parents
  • Hi Sadie,

    Are you using the built-in Tessitura NCOA Import Utility, or have you rolled your own?

    We're now using the utility for export, but still use our own tool for import, as we have a requirement that certain customers only be updated after user review.  My process actually involves getting the file back from our processor (I honestly don't even know what their name is right now, it's changed about 10 times) and then running it through a python script to remove the unnecessary rows and columns, and then I have a BCP format file, but it's just for the limited column output that my python script creates.

    --Gawain

  • I honestly don't even know what their name is right now, it's changed about 10 times

    Ha! That must be Zeta Global, formerly known as eBay, formerly known as MBS. :-)

    use our own tool for import

    We use the standard utility for export & import, but roll our own for "processing". Much more flexibility, not to mention much, much faster.

  • How do you use it to import without actually processing?

  • How do you use it to import without actually processing?

    I only use the export and import modes. Then rather than using the process mode, I get what I want from TW_NCOA_INCOMING, put it into a local table along with some data from T_ADDRESS, and do my own processing, still considering the nncoa_foot values, among other data.

  • Huh, I think when I first built the utility our provider didn't send files back in the format Tessitura wanted, and so I didn't look into doing that at all.  Also, the overwhelming majority of returned rows are "Address checks out, ignore!", specified by one of about 100 different flags, so it was nice to strip those out before adding clutter.  Still, it would be nice to be able to skip the file processing step I have to do on my local computer with a python script.

    Oh, but crap, they have a key on address_no in TW_NCOA_INCOMING: that means you can't do a trial run in Test because the import will crash on addresses added since the last Live->Test.  One of the things my script does is let me strip those out for the file I upload to Test.  Kind of defeats the point of a staging table, though, to have foreign keys on it.

  • "Address checks out, ignore!",

    Yeah, many of the addresses we get back from Zeta/MBS are just fine, but the standard utility slowly grinds through them anyway, in "process" mode. Addresses like these, with no changes at all, are skipped in my code. This, and the code 19 fiasco (discussed elsewhere in these forums, I think), pushed me to finally move to my own processing code.

  • The two things we didn't like were:

    1. Overwriting old addresses (we file them away as inactive and use a Contact Point Preference to describe why).
    2. Not being able to put on useful holds for certain customers.

    To the second point, you can use a list to prevent updates for certain customer accounts, but then you wouldn't know which accounts had been skipped, why they had been skipped and what operation had been recommended.  I needed to provide all of that to the different departments who wanted holds so that they could review them and decide what to do with the USPS recommendation readily available.

  • Overwriting old addresses

    Forgot about those; yes, likewise, we never want to lose old addresses. We inactivate and save rather than overwriting, which always seemed abhorrent, un-Tessitura-like behavior. 

Reply Children
No Data