-
Re: Create running number in Window recipe
Hi, given that you're using a special rule to compute whether an increment in the running number is needed, this won't be doable in a single recipe. You'll need - a first Window recipe like the one y…1 · -
Re: How to deal with "Processor FillEmptyWithComputedValue is not available"?
Hi, the Prepare recipe is almost entirely a row-by-row affair, so it doesn't blend well with computing things like a median, which take many rows into consideration. You can - run the Prepare recipe …1 · -
Re: To compare two datasets and find out the difference
Hi, you can do a left outer join of dataset 2 (on the left) with dataset 1 (on the right), then have a post-filter in the Join recipe to only keep rows where right_id (or whatever name you give that …1 · -
Re: Using temporary tables in SQL query recipes
Hi, the cause is the use of the `SELECT ... INTO ...` syntax, to create the temporary table. During the validation, DSS won't play any DDL statements, only DML ones, so this exclude CTAS constructs l…1 · -
Re: assign flask server to dash app
Hi, when you run a Dash webapp in DSS, DSS actually creates the Flask server and assigns it to the Dash app, exactly like you're doing. This means that as a DSS user you won't have access to the Flas…1 ·