So, you split it into two smaller files?
Here's some of the database, I would split it where I have it highlighted in red?
Code:
`username` varchar(60) NOT NULL default '',
`ordernum` int(10) NOT NULL default '0',
PRIMARY KEY (`recno`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `livehelp_qa`
--
-- --------------------------------------------------------
--
-- Table structure for table `livehelp_questions`
--
CREATE TABLE `livehelp_questions` (
`id` int(10) NOT NULL auto_increment,
`department` int(10) NOT NULL default '0',
`ordering` int(8) NOT NULL default '0',
`headertext` text,
`fieldtype` varchar(30) NOT NULL default '',
`options` text,
`flags` varchar(60) NOT NULL default '',
`module` varchar(60) NOT NULL default '',
`required` char(1) NOT NULL default 'N',
PRIMARY KEY (`id`),
KEY `department` (`department`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Dumping data for table `livehelp_questions`
--
INSERT INTO `livehelp_questions` (`id`, `department`, `ordering`, `headertext`, `fieldtype`, `options`, `flags`, `module`, `required`) VALUES
(1, 1, 0, 'E-mail:', 'email', '', '', 'leavemessage', 'Y'),
(2, 1, 0,
Is that what you mean by spliting it "between statments"?
Bookmarks