Object Conversion Summary
This section shows the object conversion Summary
Last updated
This section shows the object conversion Summary
Last updated
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
The count of all the top-level DDL objects (Table, View, Procedure, etc.) that the SnowConvert identified. If there were a parsing error on an object that made it unreconcilable, it wouldn't be an identified object.
TotalIdentifiedObjects
Expected Identified Objects: 2
Explanation: The table1
presented doesn't have a parsing error; the table2
even though it has a parsing error, the parser is still capable of recognizing the object as a table, so both are counted as an identified object; the table3
has a parsing error that makes it unreconcilable for the parser and, as a consequence, is not counted as an identified object.
The percentage of fully converted objects among the objects identified
ObjectConversionRate
Expected Object Conversion Rate: 66.66%
Explanation: In this example we have 3 statements, all of them have been identified as an object, but just the table1
, and the view1
have a 100% conversion rate. The table3
has an error warning meaning that the conversion of this table is not 100%, that's why just 2 of the 3 statements are counted as fully converted objects.
The number of identify objects that were converted successfully, meaning this objects have a 100% conversion rate.
ObjectsSuccessfullyConverted
Expected Fully Converted Objects: 2
Explanation: In this example we have 3 statements, all of them have been identified as an object, but just the table1
, and the view1
have a 100% conversion rate. The table3
has an error warning meaning that the conversion of this table is not 100%, that's why just 2 of the 3 statements are counted as fully converted objects.
Represents any code element (or parts of them) such as DML, DDL, control statements, with parsing errors that SnowConvert was unable to process.
UnrecognizedElements
Expected Unrecognized Elements: 1
Explanation: In this example we have 2 statements, the table1 is successfully identified as an object, in the other hand the view1, has a parsing error that means it's impossible to identify the view as an object, because of this SnowConvert reports 1 Unrecognized object.
Represents the number of lines in unrecognized elements.
UnrecognizedElementsLOC
Expected Lines of Code in Unrecognized Elements: 3
Explanation: The element view1
is an unrecognized element, this means that the lines related to this elements are counted as Lines of Code in Unrecognized Elements.
Represent the number of wrapped objects present in source input code
This field applies only to Oracle reports.
WrappedObjects
Expected Lines of Code in Unrecognized Elements: 1
Explanation: The procedure is declared as a wrapped object, that's why is counted as a wrapped object.