MySQL Forums
Forum List  »  MySQL Workbench

Engine and collation
Posted by: Alain Roger
Date: March 02, 2013 06:20AM

Hi,

When i right click on a table and select "copy SQL to clipboard", i get for example such script:

CREATE TABLE IF NOT EXISTS `mydb`.`industries` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`code` VARCHAR(100) NOT NULL ,
PRIMARY KEY (`id`) )
ENGINE = MyISAM
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_unicode_ci
COMMENT = ' '"

1. is it possible to get sql script but WITHOUT "schema" ? in my case the
"mydb" schema before table name ?
2. how can i set the same default charset/collation for all tables in this schema ?
3. how can i set the same engine for all tables in this schema ? I have some former tables that stayed in innoDB while in workbench preferences i set MyISAM engine.

thx.

------------------------------------------
what does not kill you, makes you stronger

Options: ReplyQuote


Subject
Views
Written By
Posted
Engine and collation
1074
March 02, 2013 06:20AM
569
March 04, 2013 03:10AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.