A quick look shows you have quotes around the database name:
USE `jptulowiecki_db`;
Change that to:
USE jptulowiecki_db
GO
Also, it is good practice to put GO under each process. If an error occurs, SQL will roll-back any changes before the last GO. So, if you don't have any GOs, then the...