sql - MySql WorkBench "Execute Query into Text Output" option not showing full result -


i have executed following in execute query text output mysql workbench 5.2.4 version.

it not showing full output., answer set trimmed.

show create table the_re.user_list;

+ ---------- + ----------------- + | table      | create table      | + ---------- + ----------------- + | user_list | create table `user_list` (   `unique_id` bigint(20) not null auto_increment,   `date_` date  not null,   `id` bigint(20) not null,   `start_` date not null,   `t_time` time default null,   `d_date` date not null,   `d_tim... | + ---------- + ----------------- + 

the above result ends following statement. there few more texts missing after this.

`d_tim... |

could please tell me how display full result text need execute 'n' query result in single text output?

update latest version (6.0.7 atm).

for getting create statements can right click on table in schema tree , choose "send sql editor.." -> "create statement".


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -