Reading MySQL manuals in MYSQL monitor? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T18:36:08Z http://stackoverflow.com/feeds/question/1081399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081399/reading-mysql-manuals-in-mysql-monitor 1 Reading MySQL manuals in MYSQL monitor? Masi 2009-07-04T03:06:18Z 2009-07-05T12:03:49Z <p><strong>Problem:</strong> to read effectively MySQL's manual</p> <p><strong>Error:</strong></p> <pre><code>mysql&gt; create database plastronics -&gt; ; ERROR 1007 (HY000): Can't create database 'plastronics'; database exists mysql&gt; </code></pre> <p><strong>Question:</strong> How to check it quickly like in VIM: ":h 1007"?</p> <p><a href="http://code.google.com/edu/tools101/mysql.html#Audience" rel="nofollow">Introduction Material I was reading</a></p> http://stackoverflow.com/questions/1081399/reading-mysql-manuals-in-mysql-monitor/1081432#1081432 4 Answer by derobert for Reading MySQL manuals in MYSQL monitor? derobert 2009-07-04T03:34:37Z 2009-07-04T03:34:37Z <p>A <a href="http://dev.mysql.com/doc/refman/5.0/en/error-messages-server.html" rel="nofollow">list of error messages</a> is available on the MySQL website. However, it isn't really going to help you if the error the server spit out didn't.</p> <p>You asked MySQL to create a database; MySQL replied that it can't create that database because it already exists. You can't have two databases on the same server with the same name. You need to either pick a different name (e.g., <code>create database plastronics2</code>) or drop the already-existing database (<code>drop database plastronics</code>).</p> <p>Please beware that dropping a database destroys everything in it (tables, views, procedures, all the data, etc.)</p> <p>Looking at the tutorial you linked, it appears it shows the same create database statement twice in a row. I suspect you just entered the statement twice, instead of once as the tutorial's author intended.</p> http://stackoverflow.com/questions/1081399/reading-mysql-manuals-in-mysql-monitor/1082957#1082957 0 Answer by Masi for Reading MySQL manuals in MYSQL monitor? Masi 2009-07-04T20:59:36Z 2009-07-04T20:59:36Z <p><strong>Solution to your problem</strong></p> <ol> <li>Make a Vim-like K button for MySQL in Screen. Note that it is not possible to put all manuals under K.</li> </ol> <p><strong>Practical solution</strong></p> <ol> <li>Download MySQL manuals to your computer. <em>(not sure whether Sun gives zip-files of them)</em></li> <li>make a binding <code>Ctrl-A Esc Ctrl-m</code> for instance for <strong>M</strong>ysql's manuals in .screenrc</li> </ol> <p>Please, search/read Screen's manual for more info by </p> <pre><code>man screen </code></pre> <p>or by pinfo</p> <pre><code>pinfo screen </code></pre>