Reading MySQL manuals in MYSQL monitor? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T18:36:08Zhttp://stackoverflow.com/feeds/question/1081399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081399/reading-mysql-manuals-in-mysql-monitor1Reading MySQL manuals in MYSQL monitor?Masi2009-07-04T03:06:18Z2009-07-05T12:03:49Z
<p><strong>Problem:</strong> to read effectively MySQL's manual</p>
<p><strong>Error:</strong></p>
<pre><code>mysql> create database plastronics
-> ;
ERROR 1007 (HY000): Can't create database 'plastronics'; database exists
mysql>
</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#10814324Answer by derobert for Reading MySQL manuals in MYSQL monitor?derobert2009-07-04T03:34:37Z2009-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#10829570Answer by Masi for Reading MySQL manuals in MYSQL monitor?Masi2009-07-04T20:59:36Z2009-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>