Code:
mysql -u root mysql
When you sourced tributes.sql, you created the tributes table into the mysql database, not in the eq database, that's why you get the error message saying tributes table doesn't exist.
log in with that command instead :
ps : don't forget to drop the tributes table from your mysql database.
Code:
use mysql;
drop tributes;