忙里偷闲

很多事情很多心情写了也就记下了; 不写,以后可能就忘了.
个人资料
正文

Removing customer email addresses in non-production environment

(2010-03-16 10:45:12) 下一个

To avoid accidently send emails to customers when we doing the testing in non-production environment, we need to remember to remove the real customer emails when we clone from production.

Here is the query to run:

update HZ_CONTACT_POINTS set email_address = '' where owner_table_id in

   (select party_sites.party_site_id from hz_party_sites party_sites, hz_cust_acct_sites a_bill

   where party_sites.party_site_id = a_bill.party_site_id )

commit;

[ 打印 ]
阅读 ()评论 (4)
评论
目前还没有任何评论
登录后才可评论.