you say this ".......but I didn't see any select in your code." well here is a full select statement for you with the same damn error message. I STILL need a "workaround" for this problem of mine which comtinues to me crazy.

create database Stevies_Database;

create table steves_table1
(first_name varchar(10) not null,
middle_name varchar(10) not null,
last_name varchar(10) not null);

select * from steves_table1;

and here is the ensuing error message:

Msg 1801, Level 16, State 3, Line 1
Database 'Stevies_Database' already exists. Choose a different database name.
Msg 2714, Level 16, State 6, Line 3
There is already an object named 'steves_table1' in the database.