Let's suppose a user posted a question about Javascript, he entered js and javascript as tags. But later, a moderator merged js and javascript into one master tag, it's now just javascript. Well, the system could simply execute an SQL update to replace the TagId of former js into the TagId javascript in a Tag Dictionary table, but the problem is, the post will finally have two identical tags (Looks like this Tags: javascript, javascript), so I was wondering how does SO handle this problem?
I know we could do a big loop for that update, but when a heavy website has tons of posts, the process will be extremely expensive and too long to respond.
