illegal characters in user customer data

Hi,

I was thinking of creating a stored procedure that would detect any records in the typical tables (T_Customer, T_Address, T_Phone, T_Eaddress) with characters symbols where they dont belong, and generally inappropriate characters like tab and return etc.

Has anyone come across a report like this already? I appreciate any advice before I get started inventing the wheel here.

Parents
  • Aaron,

    With Tessitura we provide a procedure called UP_FIND_INVALID_CHARACTERS that looks for ascii characters 1-31 or 127.

    The main Constituent tables are covered in this proc but you can always create a local version to add more tables.  

    If @fix_data is set to 'Y' this actually fixes the data.  It should be run repeatadly until no additional errors are returned by the proc.


    Dale

Reply
  • Aaron,

    With Tessitura we provide a procedure called UP_FIND_INVALID_CHARACTERS that looks for ascii characters 1-31 or 127.

    The main Constituent tables are covered in this proc but you can always create a local version to add more tables.  

    If @fix_data is set to 'Y' this actually fixes the data.  It should be run repeatadly until no additional errors are returned by the proc.


    Dale

Children