DDL - DML Statements

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.

Some parts in the output code are omitted for clarity reasons.

All statements use the EXEC helper.

SELECT

Oracle

IN -> Oracle_01.sql
--Additional Params: -t JavaScript
CREATE OR REPLACE PROCEDURE PROC1 (param1 VARCHAR)
IS
    VAR1 NUMBER := 789;
BEGIN
    SELECT * FROM TABLE01;
    SELECT DISTINCT COL1 FROM TABLE01;
    SELECT * FROM TABLE01 WHERE COL1 = VAR1;
    SELECT * FROM TABLE01 WHERE COL1 = PARAM1;
    SELECT * FROM TABLE01 WHERE COL1 = PARAM1 AND COL2 = VAR1;
END;

Snowflake

SnowConvert helpers Code removed from the example. You can find them here.

SELECT INTO

Oracle

Snowflake

SnowConvert helpers Code removed from the example. You can find them here.

INSERT and INSERT INTO SELECT

Oracle

Snowflake

SnowConvert helpers Code removed from the example. You can find them here.

DELETE

Oracle

Snowflake

SnowConvert helpers Code removed from the example. You can find them here.

UPDATE

Oracle

Snowflake

SnowConvert helpers Code removed from the example. You can find them here.

MERGE

Oracle

Snowflake

SnowConvert helpers Code removed from the example. You can find them here.

Known Issues

No issues were found.

No related EWIs.

  1. SSC-EWI-0022: One or more identifiers in a specific statement are considered parameters by default.

Last updated