I have 3 databases sytemdatabases
,smoketest
and learnqueries
.
Every time i write and execute create table query (create table tablename (colname datatype(size)))
, a new table is created in the systemdatabases
.
I need it to be created to smoketest database.
I tried on this query (create table smoketest.newtablename(number int,name varchar(50));
It is showing an error (Msg 2760, Level 16, State 1, Line 1
The specified schema name "smoketest" either does not exist or you do not have permission to use it.) when i executed it.
It says 2 chances
- Database does not exist - but the database exists
- Does not have permission - what does it mean -how to set permission to create a new table to a specific database
Pls help