SSC-FDM-TD0032

CASESPECIFIC clause was removed from LIKE expression

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.

Description

This error appears when the LIKE expression is accompanied by the [NOT] CASESPECIFIC clause.

Example Code

Input Code:

IN -> Teradata_01.sql
SELECT * FROM MY_TABLE
WHERE Name Like 'Marco%' (NOT CASESPECIFIC);

Output Code

OUT -> Teradata_01.sql
SELECT
    * FROM
    MY_TABLE
WHERE Name ILIKE 'Marco%' /*** SSC-FDM-TD0032 - NOT CASESPECIFIC CLAUSE WAS REMOVED ***/;

Recommendations

  • Case-Specific Behavior in TERADATA depends on TMODE system configuration.

  • If you need more support, you can email us at [email protected]

Last updated