<div dir="ltr"><pre>&gt;&gt;<i> $ mysql -umythtv -p mythconverg -e &#39;SHOW TABLE STATUS LIKE &#39;logging&#39;\G&#39;
</i>&gt;&gt;<i> Enter password:
</i>&gt;&gt;<i> ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check
</i>&gt;&gt;<i> the manual that corresponds to your MySQL server version for the right
</i>&gt;&gt;<i> syntax to use near &#39;logging&#39; at line 1
</i>
&gt;Oops, that should have been:

&gt;mysql -umythtv -p mythconverg -e &#39;SHOW TABLE STATUS LIKE &quot;logging&quot;\G&#39;

&gt;(quote issues).  I was hoping to get this output because it would 
&gt;show--in addition to repeating the storage engine information--some size 
&gt;information...  Something to the effect of:

&gt;$ mysql -umythtv -p mythconverg -e &#39;SHOW TABLE STATUS LIKE &quot;logging&quot;\G&#39;
&gt;*************************** 1. row ***************************
&gt;            Name: logging
&gt;          Engine: MyISAM
&gt;         Version: 10
&gt;      Row_format: Fixed
&gt;            Rows: 16952465
&gt;  Avg_row_length: 25
&gt;     Data_length: 423811625
&gt;Max_data_length: 7036874417766399
&gt;    Index_length: 387863552
&gt;       Data_free: 0
&gt;  Auto_increment: NULL
&gt;     Create_time: 2012-03-29 18:42:37
&gt;     Update_time: 2013-02-19 17:20:03
&gt;      Check_time: 2013-02-19 04:39:12
&gt;       Collation: utf8_general_ci
&gt;        Checksum: NULL
&gt;  Create_options:
&gt;         Comment:
&gt;1 row in set (0.00 sec)

&gt;where the Data_length shows the size of the data file (the .MYD) on disk 
&gt;and the Index_length shows the size of the index file (the .MYI) on 
&gt;disk.  Obviously, yours would show different information.

&gt;Note, also, that my output shows a Check_time of early this morning.  
&gt;That corresponds to the time when my system runs a daily 
&gt;<a href="http://optimize_mythdb.pl">optimize_mythdb.pl</a> cron job--a time I chose because of the extreme 
&gt;unlikelihood of a recording occurring at that time.<br></pre><pre><br>Thanks for the very complete and informative response!<br></pre><pre>Here is the output of the command that had the syntax error:<br>$ mysql -umythtv -p mythconverg -e &#39;SHOW TABLE STATUS LIKE &quot;logging&quot;\G&#39;<br>
Enter password: <br>*************************** 1. row ***************************<br>           Name: logging<br>         Engine: MyISAM<br>        Version: 10<br>     Row_format: Dynamic<br>           Rows: 27087<br> Avg_row_length: 174<br>
    Data_length: 1730321488<br>Max_data_length: 281474976710655<br>   Index_length: 650248192<br>      Data_free: 1725601312<br> Auto_increment: 20519185<br>    Create_time: 2012-11-19 09:05:36<br>    Update_time: 2013-02-19 17:41:52<br>
     Check_time: 2013-02-18 08:02:34<br>      Collation: utf8_general_ci<br>       Checksum: NULL<br> Create_options: <br>        Comment:<br><br></pre><pre>Let me know if that changes your recommendation, otherwise I&#39;ll plan to setup a cron job as you suggested.<br>
</pre><pre>Thanks<br>Dan<br></pre></div>