view etl/src/main/resources/sql/aft-common.properties @ 8709:71ae18553377

(issue1754) Also fixup master artifact for already loaded recommendations As the load many call creates (and needs to create) all artifacts in the reccomendations this would break "old" recommendations after a reload through the "Pencil" mode. A better fix would probably be to just set the master artifiact in the recommendations but due to the extremly weird interaction with the server at this point it is not trivial to identify how this can be done.
author Andre Heinecke <andre.heinecke@intevation.de>
date Fri, 24 Apr 2015 15:57:23 +0200
parents 5aa05a7a34b7
children
line wrap: on
line source
select.gewaesser = \
    SELECT GEWAESSER_NR, NAME FROM SL_GEWAESSER
select.messstelle = \
    SELECT NAME, MESSSTELLE_NR, STATIONIERUNG \
    FROM MESSSTELLE \
    WHERE GEWAESSER_NR = :GEWAESSER_NR
select.abflusstafel = \
    SELECT ABFLUSSTAFEL_NR, \
           ABFLUSSTAFEL_BEZ, \
           strftime('%s', GUELTIG_VON) * 1000 AS GUELTIG_VON, \
           strftime('%s', GUELTIG_BIS) * 1000 AS GUELTIG_BIS, \
           PEGELNULLPUNKT, \
           BFG_ID \
    FROM ABFLUSSTAFEL \
    WHERE MESSSTELLE_NR LIKE :number
select.tafelwert = \
    SELECT TAFELWERT_NR AS id, WASSERSTAND AS w, ABFLUSS AS q FROM TAFELWERT \
    WHERE ABFLUSSTAFEL_NR = :number
select.bfg.id.current = \
    SELECT ABT.BFG_ID AS BFG_ID FROM ABFLUSSTAFEL ABT \
    WHERE GUELTIG_VON IN ( \
        SELECT min(GUELTIG_VON) FROM ABFLUSSTAFEL \
        WHERE GUELTIG_VON IS NOT NULL AND GUELTIG_BIS IS NULL \
        AND MESSSTELLE_NR LIKE :number) \
    AND MESSSTELLE_NR LIKE :number

http://dive4elements.wald.intevation.org