Advertisement
Advertisement
| 08.19.2008 at 09:27AM PDT, ID: 23660223 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: |
DROP TABLE IF EXISTS `perepository`.`FootnoteCategory`; CREATE TABLE `perepository`.`FootnoteCategory` ( `Category_Id` int(10) unsigned NOT NULL auto_increment, `Category` varchar(100) default NULL, `Description` varchar(255) default NULL, `LastUpdate` datetime default NULL, `UpdatedBy` varchar(100) default NULL, PRIMARY KEY (`Category_Id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `perepository`.`Footnotes`; CREATE TABLE `perepository`.`Footnotes` ( `Footnote_Id` int(10) unsigned NOT NULL auto_increment, `Category_Id` int(10) unsigned default NULL, `Footnote` text, `Status` varchar(20) NOT NULL, `DateCreated` date default NULL, `LastUpdate` datetime default NULL, `UpdatedBy` varchar(100) default NULL, PRIMARY KEY (`Footnote_Id`), KEY `Footnotes_FKIndex1` (`Category_Id`), CONSTRAINT `FK_Footnotes_1` FOREIGN KEY (`Category_Id`) REFERENCES `FootnoteCategory` (`Category_Id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `perepository`.`HCL_Footnote_Mapping`; CREATE TABLE `perepository`.`HCL_Footnote_Mapping` ( `Mapping_Id` int(10) unsigned NOT NULL auto_increment, `Footnote_Id` int(10) unsigned NOT NULL, `Request_Id` int(10) unsigned NOT NULL, PRIMARY KEY (`Mapping_Id`), UNIQUE KEY `UniqueIndex_1` (`Footnote_Id`,`Request_Id`), KEY `FK_HCL_Footnote_Mapping_2` (`Request_Id`), CONSTRAINT `FK_HCL_Footnote_Mapping_1` FOREIGN KEY (`Footnote_Id`) REFERENCES `Footnotes` (`Footnote_Id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_HCL_Footnote_Mapping_2` FOREIGN KEY (`Request_Id`) REFERENCES `HCLRequest` (`Request_Id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; |