If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > How to get rid of tail 'InnoDB free: 8192 kB' in table comment?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-07-11, 13:06
boraldo boraldo is offline
Registered User
 
Join Date: Jan 2011
Posts: 5
How to get rid of tail 'InnoDB free: 8192 kB' in table comment?

When I create table it's comment is set to "InnoDB free: 8192 kB".
If I define comment that text is appended to what I defined.
Can I get rid of it ?
Reply With Quote
  #2 (permalink)  
Old 01-07-11, 15:59
it-iss.com it-iss.com is offline
Registered User
 
Join Date: Sep 2009
Location: San Sebastian, Spain
Posts: 623
Hi,

with what tool are you looking at the comment information? I have seen something similar in the past but the issue was related to the GUI tool that was being used rather than the data in the table itself.

Check out this link
__________________
Ronan Cashell
Senior Oracle/MySQL DBA
http://www.it-iss.com
Reply With Quote
  #3 (permalink)  
Old 01-08-11, 06:19
boraldo boraldo is offline
Registered User
 
Join Date: Jan 2011
Posts: 5
Here is a sequence of queries I've made.
My tool just uses jdbc.
But to make sure I made the last query by Java code.

Code:
create database myschema;
create table myschema.mytable (id int);
alter table myschema.mytable comment = 'qwe';

select TABLE_COMMENT from information_schema.TABLES
where TABLES.TABLE_SCHEMA = 'myschema' and TABLES.TABLE_NAME = 'mytable';
The result is
Code:
qwe; InnoDB free: 8192 kB
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On