Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Database Foundations Installing MySQL Server and MySQL Workbench Running a Script and Using MySQL Workbench

Liam Foley
Liam Foley
3,651 Points

Missing checkmarks.

If you see checkmarks on the action outputs everything is okay ... and if there are a few missing checkmarks everything isn't okay and the instructor just moves on. I am missing a few checkmarks and I'm getting warnings like "1008 Can't drop database 'treehouse_movie_db'; database doesn't exist

Simon Coates
Simon Coates
28,694 Points

Are you running the SQL he included? WIth his SQL, most of it seems to only run drop commands if a database or table exists. eg

DROP DATABASE IF EXISTS `treehouse_movie_db`;

You probably shouldn't be getting that error.