0
I have a set of tables of "like" Cg
in a database, but I can’t access it, it has two types of sets Cg
and Dbo
, i can access only the tables that are in dbo
. Example:
Tables inaccessible guy: Cg
That guy I can’t execute no command, only view and know that the table exists.
Cg.Cliente
Cg.Fornecedor
Cg.TipoCliente
Tables accessible guy: dbo
In this type I can do any command of the type DML - Data Manipulation Language.
dbo.Telefone
dbo.Pedido
dbo.Produto
It is necessary that the user has authorization to access the scheme
Cg
or any of the tables, individually. It is a matter of safety.– José Diz