2
I need to create some tables, but have that structure. For the tables of Registers I put:
Registration.Company, Registration.UF, Registration.Address and so on. For the Logo tables I do: Log.Hits, Log.Errors For the tables of Dominio I would have Dominio.Tipopessoa, Dominio.Tipousuario and so on. It happens to give me this mistake:
Message 2760, Level 16, Status 1, Line 2
The specified scheme name 'Registration' does not exist or you do not have permission to use it.
This error came from this command (only tests, so it has no primary keys and etc...):
create table Cadastro.UF(IDUf integer, Sigla_UF char(2), Nome_Uf varchar(18));
How I create a schema to use that way?