Neil Zanella <[EMAIL PROTECTED]> wrote: > > Is there a way to specify MyISAM for all tables in a given file rather > than having to specify it at the end of each table declaration. I think > this would make porting databases back and forth to MySQL somewhat easier > since including MyISAM as part of the table declaration is not compatible > with standard SQL syntax, so I would like to keep MySQL-specific stuff > separate from the rest of the SQL DDL file.
MyISAM is default table type until you specify another table type with --default-table-type option of mysqld. But "TYPE=table_type" is a part of create table definition and you can't turn off it. -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.net http://www.ensita.net/ __ ___ ___ ____ __ / |/ /_ __/ __/ __ \/ / Victoria Reznichenko / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.net <___/ www.mysql.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]