Databases & Schemas

This section shows information about the databases of the top-level objects identified in the source code by SnowConvert.

Important Notice: Migration of Documentation Website

Please be advised that our documentation website is currently undergoing a migration to a new platform. To ensure you have access to the most up-to-date information, we kindly request that you visit our new documentation website located at:

Official Snowflake Snowconvert Documentation

For any immediate assistance or if you encounter any issues, please contact our support team at [email protected].

Thank you for your understanding.

This page of the documentation is for Teradata only.

The Databases and Schemas section of the assessment report for Teradata.

Number of Databases Containing Objects

Represents the number of databases that contain identified top-level objects. Each different database name will only count as one single database.

It is important to consider that this number will only be incremented by the names used in the top-level objects, the references to the object names will not be counted in this assessment value.

The SQL and script files affect this field.

Sample

IN -> Teradata_01.sql
CREATE TABLE database1.table1(COL1 INTEGER);
CREATE TABLE DATABASE1.table1(COL1 INTEGER);

CREATE VIEW "database2"."view2" AS SELECT * FROM table2;
CREATE VIEW "DATABASE2"."view2" AS SELECT * FROM table2;

CREATE VIEW view3 AS SELECT * FROM database3.table3;

Expected Databases containing objects: 4

Explanation: Only the databases used in the name of a DDL (tables, views, macros, join indexes, procedures, and functions) will count as a database object. In this case, database1 and DATABASE1 in CREATE TABLE statements and "database2" and "DATABASE2" in CREATE VIEW statements will be counted.

Last updated