Entries Categorized as 'MySQL'

MySQL Slave Failed to Open the Relay Log

Date October 20, 2008

This problem is a little tricky, there are possible fixes that MySQL website has stated. Sad to say, the one’s I read in the forum and site didn’t fix my problem. What I encountered was that the relay-bin from my MySQL slave server has already been ‘rotated’, meaning deleted from the folder. This happens [...]

MySQL: Query Real Values from Delimiter-Separated-String-IDs

Date September 15, 2008

I had a problem in using a string-comma-separated-value returned from a query in an “IN” statement. I used the IDs from one table, concat them into a comma separated value and insert them into another table. Baaaad idea… Now when I query that value, I can’t use it directly into an “IN” statement to retrieve [...]