Jump to content

fenway

Staff Alumni
  • Posts

    16,168
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by fenway

  1. Still, which table type?
  2. Don't think this is a mysql-related issue....
  3. Is there replication involved? Are you the only one with access to this DB?
  4. There's a sticky with some resources like the ones you need.
  5. Good luck telling that to the client.
  6. Your syntax is a bit off... USING is wrong here (the column names aren't the same in both tables), and you need an ON clause. Try this: DELETE FROM pages,children LEFT JOIN children ON ( pages.id = children.childid )WHERE pages.id='$pageid'
  7. By "skip", you mean there were no entries for them in your DB?
  8. fenway

    RAM For mysql

    Such a complicated question... really depends on how the buffer pools, etc. have all been set up.
  9. localhost and 127.0.0.1 are not necessarily equivalent, especially on linux, unless they have been defined as such.
  10. How? Enlighten us.
  11. Please post your solution.
  12. Really? Using an experimental release for critical data? Oh well.... Are we talking about MyISAM tables here? What makes you think phpmyadmin is telling the truth?
  13. Seriously? That's pretty much impossible to start with.
  14. First, you probably don't need to case all of those -- mysql deals with datetime<=>date conversions quite well. Second, what are you trying to achieve?
  15. Why? Just run a single function for each perison.
  16. Why not make your own list? I'm confused.
  17. There is a FLUSH TABLES command, but I doubt that's the issue.
  18. Tuples in the DB?
  19. You sure mysql is correctly configured?
  20. Please don't use TEXT.... it's horrible... if you're using mysql5, varchar goes up to 65k.
  21. An example of the insert statement and the table definition would help, too.
  22. Yes, that is the hard way... usually, you get the most recent for each one, then join that table back.
  23. Yes, be very careful about this!
  24. Why not use SUM( IF( yourfield between x and y), 1, 0) multiple times?
  25. That's wrong... you want CURDATE() - INTERVAL 7 DAY
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.