1
vote
4answers
205 views
Schema design for when users can define fields
Greetings stackers,
I'm trying to come up with the best database schema for an application that lets users create surveys and present them to the public. There are a bunch of "standard" dem …
3
votes
In SQL how to compare date values?
Uh, WHERE mydate<='2008-11-25' is the way to do it. That should work.
Do you get an error message? Are you using an ancient version of MySQL?
Edit: The foll …
0
votes
When should database indexes be rebuilt?
It's usually a good idea to set up a cronjob to optimize indexes and check for errors.
See mysqlcheck. A …
4
votes
Mysql Visualization Tools
I really like Sqlyog on Windows. It is (technically) open source, but not cross-platform. (Scroll down to "community edition") …
0
votes
Wildcard search on column(s) in a large table (>10.000.000 rows) in MySQL
You want to look at the MATCH...AGAINST function.
See, for example: Using MySQL Full-text Searching
…
2
votes
How to check if MySQL query is valid without executing it?
Depending on your MySQL engine and settings, you could start a transaction, try the query, and then do a rollback. Assuming dirty reads are off, that should work.
…
2
votes
Has anyone successfully connected to MySQL from Ruby?
Sounds like you've run in to a MySQL quirk. Some time around version 5.0 they changed the format of connect passwords. It's an easy fix, though: …
0
votes
php: reversing mysql_real_escape_string’s effects on binary
Sure, should be fixable. You just need to figure out exactly what mysql_real_escape_string does. I believe you just need to remove any slashes that immediately precede a CR, LF, TAB, singl …
1
vote
SQL that list all birthdays within the next and previous 14 days
My first thought was it would be easy to just to use DAYOFYEAR and take the difference, but that actually gets kinda trick near the start/end of a yeay. However:
WHERE
DAYOFYEAR(NO …
2
votes
How can I store my Rewrite Rules in a database?
Assuming all these pages are ultimately in Joomla, I think using .htaccess or mod_rewrite is a mistake.
I think you're much better off learning how Openserf works. I'd imagine it has a litt …
0
votes
Log killed queries in MySQL
You might be able to use the slow log, but I'm not sure if the problem is that they never complete. Worth a s …
0
votes
Find new rows in database
Take a look at the Timestamp column type -- it automatically updates whenever you create or alter a record.
…
0
votes
MySQL “CREATE TABLE IF NOT EXISTS” -> Error 1050
Works fine for me in 5.0.27
I just get a warning (not an error) that the table exists;
…
