Yellowfin latest version(9.10) installation on windows with MySql v8 throwing DB Error
When I am trying to install latest version of yellowfin(9.10.0.1) using mysql v8, installation got failed. By looking at logs, Please see the attached. Tool is using incorrect syntax of mysql to create the table. Please help me in installing the application.
Query : CREATE TABLE AccessClassList ( IpOrg INT, RoleCode TINYTEXT(40), AccessLevelCode TINYTEXT(40), ACLSeqNbr INT, FunctionName TINYTEXT(256), FunctionTypeCode TINYTEXT(40), SortOrder INT ) engine = INNODB
Error: Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version for the right syntax to use near '(40),
AccessLevelCode TINYTEXT(40), ACLSeqNbr INT, FunctionName TINYTEXT(256), F' at line 1
Thanks
Hello Anil,
Thanks for reaching out to Yellowfin support.
To address the encountered error, please review the following:
1. Please ensure that the database user possesses adequate permissions to create tables. If there are any permission restrictions, granting full control to the database user for the Yellowfin database might resolve the issue.
2. In MySQL, the TINYTEXT data type doesn't require a length specifier (e.g (40) or (256)), as MySQL does not support this specification. Kindly attempt to remove the length parameters from the TINYTEXT declarations in the SQL query to resolve this issue.
Please let me know if you require further assistance or encounter any other issues.
Regards,
Sharwari Inkane
Hello Anil,
Thanks for reaching out to Yellowfin support.
To address the encountered error, please review the following:
1. Please ensure that the database user possesses adequate permissions to create tables. If there are any permission restrictions, granting full control to the database user for the Yellowfin database might resolve the issue.
2. In MySQL, the TINYTEXT data type doesn't require a length specifier (e.g (40) or (256)), as MySQL does not support this specification. Kindly attempt to remove the length parameters from the TINYTEXT declarations in the SQL query to resolve this issue.
Please let me know if you require further assistance or encounter any other issues.
Regards,
Sharwari Inkane
Replies have been locked on this page!