Re: [RESOLVED] Create Tables
In my case I use dbo as schema, try : MyDatabase.dbo.VType
Re: [RESOLVED] Create Tables
dbo is the "DataBaseOwner" ... not the schema... the full format is Schema.Owner.Object... at any rate... the reason it didn't work originally was because it was using the original connection which was tied to the master database... once the database is created, close the connection, and re-open it, this time using the new database as the schema... then your create tables will work as expected.
-tg