SnowConvert AI - Oracle - PACKAGES¶
Description¶
Use the
CREATEPACKAGEstatement to create the specification for a stored package, which is an encapsulated collection of related procedures, functions, and other program objects stored together in the database. The package specification declares these objects. The package body, specified subsequently, defines these objects.(Oracle PL/SQL Language Reference CREATE PACKAGE Statement)
Snowflake does not have an equivalent for Oracle packages, so in order to maintain the structure, the packages are transformed into a schema, and all its elements are defined inside it. Also, the package and its elements are renamed to preserve the original schema name.
BODY¶
Description¶
The header of the PACKAGE BODY is removed and each procedure or function definition is transformed into a standalone function or procedure.
CREATE PACKAGE SYNTAX¶
Sample Source Patterns¶
Note
The following queries were transformed with the PackagesAsSchema option disabled.
Oracle¶
Snowflake¶
Snowflake¶
Known Issues¶
No issues were found.
Constants¶
Translation spec for Package Constants
Description¶
PACKAGE CONSTANTS can be declared either in the package declaration or in the PACKAGE BODY. When a package constant is used in a procedure, a new variable is declared with the same name and value as the constant, so the resulting code is pretty similar to the input.
Oracle Constant declaration Syntax¶
Sample Source Patterns¶
Sample auxiliary code¶
Oracle¶
Snowflake¶
Oracle¶
Result¶
ID |
|---|
9999 |
Snowflake¶
Result¶
ID |
|---|
9999 |
Note
Note that thePROCEDURE definition is being removed since it is not required in Snowflake.
Known Issues¶
No issues were found.
Related EWIs¶
SSC-FDM-0006: Number type column may not behave similarly in Snowflake.
DECLARATION¶
Description¶
The declaration is converted to a schema, so each inner element is declared inside this schema. All the elements present in the package are commented except for the VARIABLES which have a proper transformation.
CREATE PACKAGE SYNTAX¶
Sample Source Patterns¶
Note
The following queries were transformed with the PackagesAsSchema option disabled.
Oracle¶
Snowflake¶
Note
Note that both FUNCTION and PROCEDURE definitions are being removed since they are not required in Snowflake.
Known Issues¶
No issues were found.
Related EWIs¶
No related EWIs.
VARIABLES¶
Translation spec for Package Variables
Description¶
PACKAGE VARIABLES can be declared either in the package declaration or in the PACKAGE BODY. Due to its behavior, these variables are converted into Snowflake session variables so each usage or assignment is translated to its equivalent in Snowflake.
Oracle Variable declaration syntax¶
Sample Source Patterns¶
Sample auxiliary code¶
Oracle¶
Snowflake¶
Variable declaration¶
Oracle¶
Snowflake Scripting¶
Variable Usage¶
Package variable usages are transformed into the Snowflake GETVARIABLE function which accesses the current value of a session variable. An explicit cast is added to the original variable data type in order to maintain the functional equivalence in the operations where these variables are used.
Oracle¶
Result¶
ID |
|---|
100 |
Snowflake¶
Result¶
ID |
|---|
100 |
Note
Note that the PROCEDURE definition in the package is removed since it is not required by Snowflake.
Variable regular assignment¶
When a package variable is assigned using the := operator, the assignation is replaced by a SnowConvert AI UDF called UPDATE_PACKAGE_VARIABLE_STATE which is an abstraction of the Snowflake SETVARIABLE function.
Oracle
Oracle¶
Result¶
ID |
|---|
200 |
Snowflake¶
Result¶
ID |
|---|
200 |
Note
Note that the PROCEDURE definition in the package is removed since it is not required by Snowflake.
Variable assignment as an output argument¶
When a package variable is used as an output argument a new variable is declared inside the procedure, this variable will catch the output argument value of the procedure, and then the variable will be used to update the session variable which refers to the package variable using the UPDATE_PACKAGE_VARIABLE_STATE mentioned above.
Oracle¶
Result¶
ID |
|---|
1000 |
Snowflake¶
Result¶
ID |
|---|
1000 |
Note
Note that the PROCEDURE definition in the package is removed since it is not required by Snowflake.
Known Issues¶
No issues were found.
Related EWIs¶
SSC-FDM-0006: Number type column may not behave similarly in Snowflake.