Bug #9322 Improper order of documented commands
Submitted: 21 Mar 2005 22:43 Modified: 22 Mar 2005 16:56
Reporter: Michael Reeves Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Documentation Severity:S3 (Non-critical)
Version: OS:
Assigned to: Paul DuBois CPU Architecture:Any

[21 Mar 2005 22:43] Michael Reeves
Description:
On the webpage explaining how to import the world database (http://dev.mysql.com/doc/world-setup.html) there is an error in the sql code to import the database.

How to repeat:
CREATE DATABASE world;
SOURCE world.sql;      ----- prior to the USE command.
USE DATABASE world;
...

Suggested fix:
CREATE DATABASE world;
USE DATABASE world;
SOURCE world.sql;
SHOW TABLES;
[22 Mar 2005 16:56] Paul DuBois
Thank you for your bug report. This issue has been addressed in the
documentation. The updated documentation will appear on our website
shortly, and will be included in the next release of the relevant
product(s).

Additional info:

Thanks for the report.