Hi,
It sounds like in your database knowage_ce you lack the table SBI_DATA_SOURCE.
I discovered that this table isn't created during installation if you choose Highcharts Js (without demo), you have to use the db script to create those table, for instance :
mysql -u root -p knowage_ce -e "source ./MySQL_create.sql ;"
Also you may need to change your sql_mode with something like this :
mysql -u root -p knowage_ce -e "SET sql_mode=(SELECT REPLACE(@@sql_mode,'NO_ZERO_DATE','')) ;"
HTH
Regards,
Sylvain