GithubHelp home page GithubHelp logo

Comments (4)

roger-mahler avatar roger-mahler commented on June 1, 2024
select *
from tbl_dataset_submission_types
BugsData:   submission_type: 5  contact_id: Phil submitted_data: (date_updated from dataset)
MAL_Data:   submission_type: 7 (om Eriks client) contact_id: Phil submitted_data: (date_updated from dataset)

Iso_Data:   submission_type: 12 contact_id: Phil submitted_data: (date_updated from dataset)                       
Dendro:     submission_type: 13 / Compilation into SEAD from another database
Ceramic:    submission_type: 13 / Compilation into SEAD from another database
Pollen:     submission_type: 14 / Compilation into SEAD from another database

-- Ny submission_type: 12, Compilation into SEAD via (articles + Excel) => Excel => XML => CH => SEAD
-- Ny submission_type: 13, Compilation into SEAD via external DB (excel) => Excel => XML => CH => SEAD
-- Ny submission_type: 14, Compilation into SEAD via external TILIA => XML => (Excel) => XML => CH => SEAD

from sead_change_control.

roger-mahler avatar roger-mahler commented on June 1, 2024

See 20191222_DML_DATASET_SUBMISSION_UPDATE. This code must be verified/approved. The change is moved to SEAD 202002 release.

from sead_change_control.

roger-mahler avatar roger-mahler commented on June 1, 2024

To clarify: the question marks ???? in the last two insert statements in 20191222_DML_DATASET_SUBMISSION_UPDATE need to be replaced by proper criteria.

from sead_change_control.

visead avatar visead commented on June 1, 2024

Changes in bold (at least they were supposed to be!) below. The new submission types need to be entered into tbl_dataset_submission_types

    /* MAL, Eriks */

    insert into tbl_dataset_submissions (dataset_id, submission_type_id, contact_id, date_submitted, notes)

    	select d.dataset_id, 7, 1, d.date_updated, **'Compilation into SEAD from primary source using Eriks Erikssons software'**

    	from tbl_datasets d

    	left join tbl_dataset_submissions s using (dataset_id)

    	where TRUE

    	  and s.dataset_submission_id is null

    	  and d.master_set_id in (2)

          **and d.method_id<>14**;         /* = Not Pollen */



    /* Pollen */

    insert into tbl_dataset_submissions (dataset_id, submission_type_id, contact_id, date_submitted, notes)

    	select d.dataset_id, 15, 1, d.date_updated, **'Single dataset from another database submission into SEAD via Tilia** software'

    	from tbl_datasets d

    	left join tbl_dataset_submissions s using (dataset_id)

    	where TRUE

    	  and s.dataset_submission_id is null

    	  and d.master_set_id in (2)

          **and d.method_id=14**; /* = Pollen */

from sead_change_control.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.