MySQL Forums
Forum List  »  Newbie

Re: Strange problem when loading a table -- What did I do wrong?
Posted by: Brian Gray
Date: February 26, 2005 11:59PM

CREATE TABLE `students` (
`STUDID` varchar(9) NOT NULL default '',
`LNAME` varchar(30) NOT NULL default '',
`FNAME` varchar(30) NOT NULL default '',
`LEARNID` varchar(15) default NULL,
`COMMENT` text,
PRIMARY KEY (`STUDID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1

I think this is what you meant by a dumpfile,
It is the result of SHOW CREATE TABLE STUDENTS;

Thanks
Brian

Options: ReplyQuote


Subject
Written By
Posted
Re: Strange problem when loading a table -- What did I do wrong?
February 26, 2005 11:59PM


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.