Re: [GENERAL] Email address column verification foraddress list

2010-04-13 Thread Peter Geoghegan
> So for most applications written against this database, they're probably > assuming only one email address in this column. > > And then you confuse the issue by putting two or more comma-separated > addresses, which are not universally usable when a single address > is provided. Surely not Randa

Re: [GENERAL] Email address column verification foraddress list

2010-04-13 Thread Randal L. Schwartz
> "Andrus" == Andrus writes: Andrus> This is existing database deployed to many sites and used by many programs. Andrus> Re-factoring db and software to add this minor feature seems to be not Andrus> reasonable. For 99% of cases field contains only single address. So for most applications

Re: [GENERAL] Email address column verification foraddress list

2010-04-13 Thread Andrus
Peter, thank you. Why don't you just separate them into individual fields (perhaps in a separate table to have arbitrary many addresses)? What you're doing violates 1NF - fields should be atomic (i.e. in their simplest form, so you never have to parse values from them). This is existing datab