All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.write-strategies.jdbc.overwrite.j2 Maven / Gradle / Ivy

{% if materializedView == 'MATERIALIZED_VIEW' %}
DROP MATERIALIZED VIEW IF EXISTS {{ tableFullName }};
CREATE MATERIALIZED VIEW {{ tableFullName }} AS {{ selectStatement }}
{% else %}
TRUNCATE TABLE {{ tableFullName }};
INSERT INTO {{ tableFullName }} {{ selectStatement }}
{% endif %}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy