I was trying to run the tools function for CB 1.9.1 when I encountered the issue.
I went back to the original database I exported and found that the AUTO_INCREMENT attribute was dropped from the sql file.
Error database
DROP TABLE IF EXISTS `jcms3_comprofiler_field_values`;
CREATE TABLE IF NOT EXISTS `jcms3_comprofiler_field_values` (
`fieldvalueid` int(11) NOT NULL,
`fieldid` int(11) NOT NULL DEFAULT '0',
`fieldtitle` varchar(255) NOT NULL DEFAULT '',
`ordering` int(11) NOT NULL DEFAULT '0',
`sys` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Fixed database
DROP TABLE IF EXISTS `j33_comprofiler_field_values`;
CREATE TABLE IF NOT EXISTS `j33_comprofiler_field_values` (
`fieldvalueid` int(11) NOT NULL,
`fieldid` int(11) NOT NULL DEFAULT '0',
`fieldtitle` varchar(255) NOT NULL DEFAULT '',
`fieldlabel` varchar(255) NOT NULL DEFAULT '',
`ordering` int(11) NOT NULL DEFAULT '0',
`sys` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM AUTO_INCREMENT=777 DEFAULT CHARSET=latin1;
Importing in the corrected database resolved the errors being flagged by the CB Tools and allowed for both reinstalling CB 1.9.1 as well as updating CB to version 2.0.12.