show/hide this revision's text 3 deleted 14 characters in body

Sorry, won't work.

Looks like the wizard created a database called "gk", and then put all tables in a schema titled "gk".

If the tables exist in a named schema (ie, something besides the default schema of "dbo"), then you will always have to specify the schema when querying it.

NOTE: In some situations, there is a significant performance penalty for NOT explicitly specifying the schema/owner. More significant in older versions of SQL, but still there. May not be a big enough difference to matter in your application, but still worth knowing:

show/hide this revision's text 2 added 747 characters in body

Sorry, won't work. Looks like the wizard created a database called "gk", and put all tables in a schema titled "gk".

If the tables exist in a named schema (ie, something besides the default schema of "dbo"), then you will always have to specify the schema when querying it.

NOTE: In some situations, there is a significant performance penalty for NOT explicitly specifying the schema/owner. More significant in older versions of SQL, but still there. May not be a big enough difference to matter in your application, but still worth knowing:

show/hide this revision's text 1

Sorry, won't work. Looks like the wizard created a database called "gk", and put all tables in a schema titled "gk".

If the tables exist in a named schema (ie, something besides the default schema of "dbo"), then you will always have to specify the schema when querying it.