SnowConvert AI - Schemas¶
참고
이 설명서의 이 페이지는 Oracle 전용입니다.
오브젝트를 포함하는 스키마 수¶
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.
이 숫자는 최상위 레벨 오브젝트를 생성하는 데 사용되는 이름만큼만 증가하며, 오브젝트 이름에 대한 참조는 이 평가 값에 포함되지 않는다는 점을 고려하는 것이 중요합니다.
경고
Oracle의 데이터베이스 링크 최상위 오브젝트는 스키마에 정의되어 있지 않으므로 이 최상위 오브젝트는 이 평가 값에 적용되지 않습니다.
샘플¶
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));
오브젝트를 포함하는 예상 스키마 수: 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.