TMyDump doTables=true set the auto_increment value
Posted: Wed 17 Jan 2007 08:29
Hello support,
i have a problem with the TMyDump and Option doTables=true. Such a statement is generated by your component.
If I want to create a new table the inc value should start by 0 and not by the value which is actual set for the specific table. Is this an option which I can change?
Actual a have to change in my script 53 tables!
i have a problem with the TMyDump and Option doTables=true. Such a statement is generated by your component.
Why is the autoinc value set like 'AUTO_INCREMENT=67'?DROP TABLE IF EXISTS t_allekufen;
CREATE TABLE `t_allekufen` (
`k_id` int(11) NOT NULL auto_increment,
`k_dim1` int(11) default NULL,
`k_dim2` int(11) default NULL,
PRIMARY KEY (`k_id`)
) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=latin1;
If I want to create a new table the inc value should start by 0 and not by the value which is actual set for the specific table. Is this an option which I can change?
Actual a have to change in my script 53 tables!