0
votes
1answer
151 views
Annoying PhpMyAdmin export feature
I wonder if any other users of PhpMyAdmin for Mysql have come across this niggle? Normally when exporting the results of a sql query, you're given options (eg what format to export in , name of fi …
5
votes
6answers
195 views
What are the essential dba skills a developer should learn?
Creation of objects like tables and indexes are fairly essential, even if the code has to be authorized or created by the dba. What other areas normally carried out by dbas should the accomplished …
2
votes
2answers
133 views
How do I utilise longitude/latitude values efficiently in Mysql ?
Thanks to Wikileaks, here in the UK we can now access our longitude and latitude co-ordinates for each post code …
0
votes
1 index for 2 kinds of queries below possible in MYSQL?
You stated "If create index on (type,last),the first one won't use index." Are you sure about this? I was under the impression this is exactly the circumstance under which a covering index would ex …
0
votes
Advantage to parsing Excel Spreadsheet data vs. CSV?
Remember that if you're importing the csv file directly into Mysql, that you may have problems with the date format (as Mysql uses a different date format to Excel). I find it easier to change the …
2
votes
Hidden Features of MySQL
If using cmdline Mysq, you can interact with the command line (on Linux machines - not sure if there is an equivalent effect on Windows) by using the shriek/exclamation mark. For example:
…
0
votes
MySQL 1 millon row query speed
Does there need to be an index on play_date, or move the position in the composite index to second place?
…
0
votes
select 10 rows per day with order
After looking at (the ever excellent) xaprb blog from Baron Schwarz, http://www.xaprb.com/blog/2006/12/02/ …
0
votes
MySQL, MSSql, Oracle: When to use which?
Perhaps one variable which people overlook in these cases is the availability of expert support. Okay, so currently there's an oversupply of people who can help you with db issues, efficiency issue …
-1
votes
How do I ask for help optimizing & fixing queries in MySQL?
Knowing which indexes you have on the tables concerned is vital, imo. You state you are using a substring of column_bar in the where clause - you may need to denormalize and store this substring in …
1
vote
A great tutorial of mysql to jump right in?
As well as the standard method of using Google, you can also find quite a few decent tutorials popping up on YouTube nowadays.
As for web recommendations here's a couple that go a little beyond the …
1
vote
Going to Oracle from MySQL
Point Two It may have changed since I last used it, but you wouldn't put select 6 * 7; as a statement - you'd use the pseudo-table dual ie select 6 * 7 from dual; Also, if you're used to using the …
0
votes
Can I display the output of MySQL using CGI?
I too wondered if it were difficult to display Mysql database records using cgi on web pages. Here's a link to how I did it (although it's fairly basic, it really wasn't too difficult):
…
