Originally posted by KyrosKrane
View Post
With luck, the database engine will do this for you. Look up materialized view for an example. (Which might solve this problem, but you can't use it.) Triggers are frequently used to automate the duplication. Even indexes themselves are duplicate data, and every database worth its salt does those. An expensive commercial engine like Oracle will do a lot more of that maintenance for you than a quality free product like MySQL.
Comment