It seems you are trying to create a table in the master database, where you may not have permission to create the table. However, to create the target database, follow these steps:
a. In the SQLQuery editor, select the target database ( Available Database drop-down list) and execute your SQL query.
or
b. Try the following statement:
USE YourTargetDatabaseName GO CREATE TABLE Employee ( ID SMALLINT NOT NULL) GO
source share