MySQL Forums
Forum List  »  Backup

Re: Fail to recover from mysqldump backup file
Posted by: yudong.sun
Date: April 19, 2005 03:31AM

DROP TABLE IF EXISTS blastn_out;
CREATE TABLE blastn_out (
comparison_id int(10) unsigned NOT NULL default '0',
ref_nucleo_id varchar(10) NOT NULL default '',
qry_nucleo_id varchar(10) NOT NULL default '',
ref_start int(10) unsigned default NULL,
ref_end int(10) unsigned default NULL,
qry_start int(10) unsigned default NULL,
qry_end int(10) unsigned default NULL,
score float NOT NULL default '0',
e_value double NOT NULL default '0',
qry_strand tinyint(4) default NULL,
ref_strand tinyint(4) default NULL,
KEY Primary (comparison_id),
KEY seqids (ref_nucleo_id,qry_nucleo_id)
) TYPE=MyISAM;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Fail to recover from mysqldump backup file
3073
April 19, 2005 03:31AM


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.