show/hide this revision's text 6 typo: Usefull

Usefull

Useful Commands:

show/hide this revision's text 5 added 950 characters in body

In general, all the SQLs I tuned today required using sub-queries. Having come from Oracle database world, things I took for granted weren’t working the same with MySQL. And my reading on MySQL tuning makes me conclude that MySQL is way behind Oracle in terms of optimizing queries.

While the simple queries required for most B2C applications may work well for MySQL, most of the aggregate reporting type of queries needed for Intelligence Reporting seems to require a fair bit of planning and re-organizing the SQL queries to guide MySQL to execute them faster. With Oracle CBO, that’s usually never the case.Things are far more intuitive and easy in Oracle world.

When working with Dates, I almost always convet to Julian Date becuase Data math is then a simple matter of adding or subtracing integers, and Seconds since Midnight for the same reason. It is rare I need time resoultion of finer granularity than seconds.

Both these can be stored as a 4 byte integer, and if space is really tight can be combined into UNIX time (seconds since the epoch 1/1/1970) as an unsigned integer which will be good till around 2106 as:

' secs in 24Hrs = 86400

' Signed Integer max val = 2,147,483,647 - can hold 68 years of Seconds

' Unsigned Integer max val = 4,294,967,295 - can hold 136 years of Seconds

Well that should be enought ot earn the bonus I would think... The fruits of many hours and many projects with a great free database. I develop application data servers on windows platforms mostly with MySQL. The worst mess I had to straighten out was

http://stackoverflow.com/questions/101333/the-ultimate-mysql-legacy-database-nightmare

This required a series of appplications to process the tables into something usefull using many of the tricks mentioned here.

show/hide this revision's text 4 added 921 characters in body

If you found this astoundingly helpfull, express your thanks by voting it up.

show/hide this revision's text 3 added 16 characters in body
show/hide this revision's text 2 deleted 381 characters in body
show/hide this revision's text 1
    Post Made Community Wiki by Community