SnowConvert AI - Schemas¶
Nota
Esta página da documentação é apenas para Oracle.
Número de esquemas que contêm objetos¶
Represents the number of schemas that contain identified top-level objects. Each different schema name will only count as one single schema. In case an object does not have an explicit schema in its name, SnowConvert AI will count all of those names as one single schema because it is assumed that those objects are defined in the default schema of Oracle.
É importante considerar que esse número só será incrementado pelos nomes usados para criar os objetos de nível superior; as referências aos nomes dos objetos não serão contadas nesse valor de avaliação.
Aviso
O objeto de nível superior Database Link no Oracle não é definido em nenhum esquema; esse objeto de nível superior não se aplica a esse valor de avaliação.
Exemplo¶
CREATE TABLE schema1.table1 (col1 VARCHAR(255));
CREATE TABLE SCHEMA1.table2 (col1 VARCHAR(255));
CREATE TABLE schema2.table3 (col1 VARCHAR(255));
CREATE TABLE "SCHEMA3"."table4" (col1 VARCHAR(255));
CREATE TABLE "schema3"."table5" (col1 VARCHAR(255));
CREATE TABLE table6 (col1 VARCHAR(255));
CREATE TABLE table7 (col1 VARCHAR(255));
Número esperado de esquemas que contêm objetos: 5
Explanation: Since table1
and table2
come from the same schema only one schema will be counted for those two objects. With the schema name of table3
that will count as another different schema and finally. table4
and table5
have the schema names with double quotes and with uppercase and lowercase, this will make these two schemas count as different ones. table6
and table7
do not have an explicit schema name so SnowConvert AI will assume that both objects come from the same default schema.