uf-hobi-informatics-lab / UTH-omoponfhir-main-v54-r4

OMOP v5.4 on FHIR R4 with SQL Render - GUI Server
Apache License 2.0
0 stars 0 forks source link

new aokun dataset to database #4

Open huyuaaaray opened 3 weeks ago

huyuaaaray commented 3 weeks ago
  1. psql -h localhost -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/OMOPCDM_postgresql_5.4_ddl.sql
  2. 
    ALTER TABLE person
    ALTER COLUMN care_site_id TYPE float;
    ALTER TABLE person
    ALTER COLUMN provider_id TYPE float;

COPY person ( person_id, gender_concept_id, year_of_birth, month_of_birth, day_of_birth, birth_datetime, race_concept_id, ethnicity_concept_id, location_id, provider_id, care_site_id, person_source_value, gender_source_value, gender_source_concept_id, race_source_value, race_source_concept_id, ethnicity_source_value, ethnicity_source_concept_id ) FROM '/csv_data/person.csv' WITH (DELIMITER ',', FORMAT 'csv', HEADER, NULL '');

return `COPY 46148`
3. 

ALTER TABLE condition_occurrence ALTER COLUMN person_id TYPE bigint;

ALTER TABLE condition_occurrence ALTER COLUMN provider_id TYPE float;

ALTER TABLE condition_occurrence ALTER COLUMN visit_occurrence_id TYPE bigint;

ALTER TABLE condition_occurrence ALTER COLUMN visit_detail_id TYPE bigint;

COPY CONDITION_OCCURRENCE( condition_occurrence_id, person_id, condition_concept_id, condition_start_date, condition_start_datetime, condition_end_date, condition_end_datetime, condition_type_concept_id, condition_status_concept_id, stop_reason, provider_id, visit_occurrence_id, visit_detail_id, condition_source_value, condition_source_concept_id, condition_status_source_value ) FROM '/csv_data/condition_occurrence.csv' WITH DELIMITER ',' CSV HEADER NULL '';

return` COPY 21600918`
3.

ALTER TABLE DEATH ALTER COLUMN person_id TYPE bigint;

COPY DEATH(person_id,death_date,death_datetime,death_type_concept_id,cause_concept_id,cause_source_value,cause_source_concept_id) FROM '/csv_data/death.csv' WITH DELIMITER ',' CSV HEADER;

return` COPY 8369`
4. 

ALTER TABLE DRUG_EXPOSURE ALTER COLUMN person_id TYPE bigint;

ALTER TABLE DRUG_EXPOSURE ALTER COLUMN provider_id TYPE float;

ALTER TABLE DRUG_EXPOSURE ALTER COLUMN visit_occurrence_id TYPE bigint;

ALTER TABLE DRUG_EXPOSURE ALTER COLUMN visit_detail_id TYPE bigint;

ALTER TABLE drug_exposure ALTER COLUMN refills TYPE float;

COPY DRUG_EXPOSURE(drug_exposure_id,person_id,drug_concept_id,drug_exposure_start_date,drug_exposure_start_datetime,drug_exposure_end_date,drug_exposure_end_datetime,verbatim_end_date,drug_type_concept_id,stop_reason,refills,quantity,days_supply,sig,route_concept_id,lot_number,provider_id,visit_occurrence_id,visit_detail_id,drug_source_value,drug_source_concept_id,route_source_value,dose_unit_source_value) FROM '/csv_data/drug_exposure.csv' WITH DELIMITER ',' CSV HEADER;

return `COPY 23772931`
5.
no device exposure data
6. 

COPY LOCATION(location_id,address_1,address_2,city,state,zip,county,location_source_value,country_concept_id,country_source_value,latitude,longitude) FROM '/csv_data/location.csv' WITH DELIMITER ',' CSV HEADER;

return `COPY 2211229`
7. 

ALTER TABLE measurement ADD COLUMN modifier_of_event_id integer;

ALTER TABLE measurement ADD COLUMN modifier_of_field_concept_id integer;

ALTER TABLE measurement ALTER COLUMN person_id TYPE bigint;

ALTER TABLE measurement ALTER COLUMN unit_concept_id TYPE float;

ALTER TABLE measurement ALTER COLUMN provider_id TYPE float;

ALTER TABLE measurement ALTER COLUMN visit_occurrence_id TYPE bigint;

ALTER TABLE measurement ALTER COLUMN visit_detail_id TYPE bigint;

ALTER TABLE measurement ALTER COLUMN value_as_concept_id TYPE float;

ALTER TABLE measurement ALTER COLUMN unit_source_concept_id TYPE float;

COPY MEASUREMENT(measurement_id,person_id,measurement_concept_id,measurement_date,measurement_datetime,measurement_time,measurement_type_concept_id,operator_concept_id,value_as_number,value_as_concept_id,unit_concept_id,range_low,range_high,provider_id,visit_occurrence_id,visit_detail_id,measurement_source_value,measurement_source_concept_id,unit_source_value,unit_source_concept_id,value_source_value,measurement_event_id,meas_event_field_concept_id,modifier_of_event_id,modifier_of_field_concept_id) FROM '/csv_data/measurement.csv' WITH DELIMITER ',' CSV HEADER;

return `COPY 172137446`
8.

ALTER TABLE OBSERVATION ALTER COLUMN person_id TYPE bigint;

ALTER TABLE OBSERVATION ALTER COLUMN provider_id TYPE float;

ALTER TABLE OBSERVATION ALTER COLUMN visit_occurrence_id TYPE bigint;

ALTER TABLE OBSERVATION ALTER COLUMN visit_detail_id TYPE bigint;

ALTER TABLE OBSERVATION ALTER COLUMN value_as_concept_id TYPE float;

ALTER TABLE OBSERVATION ALTER COLUMN unit_concept_id TYPE float;

COPY OBSERVATION(observation_id,person_id,observation_concept_id,observation_date,observation_datetime,observation_type_concept_id,value_as_number,value_as_string,value_as_concept_id,qualifier_concept_id,unit_concept_id,provider_id,visit_occurrence_id,visit_detail_id,observation_source_value,observation_source_concept_id,unit_source_value,qualifier_source_value,value_source_value,observation_event_id,obs_event_field_concept_id) FROM '/csv_data/observation.csv' WITH DELIMITER ',' CSV HEADER;

return `COPY 39450960`
9.

ALTER TABLE OBSERVATION_PERIOD ALTER COLUMN person_id TYPE bigint;

COPY OBSERVATION_PERIOD(observation_period_id,person_id,observation_period_start_date,observation_period_end_date,period_type_concept_id) FROM '/csv_data/observation_period.csv' WITH DELIMITER ',' CSV HEADER;

return `COPY 46148`
10.

ALTER TABLE PROCEDURE_OCCURRENCE ALTER COLUMN person_id TYPE bigint;

ALTER TABLE PROCEDURE_OCCURRENCE ALTER COLUMN modifier_concept_id TYPE float;

ALTER TABLE PROCEDURE_OCCURRENCE ALTER COLUMN quantity TYPE float;

ALTER TABLE PROCEDURE_OCCURRENCE ALTER COLUMN provider_id TYPE float;

ALTER TABLE PROCEDURE_OCCURRENCE ALTER COLUMN visit_occurrence_id TYPE float;

ALTER TABLE PROCEDURE_OCCURRENCE ALTER COLUMN visit_detail_id TYPE float;

COPY PROCEDURE_OCCURRENCE(procedure_occurrence_id,person_id,procedure_concept_id,procedure_date,procedure_datetime,procedure_end_date,procedure_end_datetime,procedure_type_concept_id,modifier_concept_id,quantity,provider_id,visit_occurrence_id,visit_detail_id,procedure_source_value,procedure_source_concept_id,modifier_source_value) FROM '/csv_data/procedure_occurrence.csv' WITH DELIMITER ',' CSV HEADER;

return `COPY 4886943`
11.

ALTER TABLE visit_occurrence ADD COLUMN admitting_source_concept_id integer;

ALTER TABLE visit_occurrence ADD COLUMN admitting_source_value character varying(255);

ALTER TABLE visit_occurrence ADD COLUMN discharge_to_concept_id integer;

ALTER TABLE visit_occurrence ADD COLUMN discharge_to_source_value integer;

ALTER TABLE visit_occurrence ALTER COLUMN visit_occurrence_id TYPE bigint;

ALTER TABLE visit_occurrence ALTER COLUMN person_id TYPE bigint;

ALTER TABLE visit_occurrence ALTER COLUMN provider_id TYPE float;

ALTER TABLE visit_occurrence ALTER COLUMN care_site_id TYPE float;

ALTER TABLE visit_occurrence ALTER COLUMN discharge_to_source_value TYPE character varying(255);

ALTER TABLE visit_occurrence ALTER COLUMN admitting_source_concept_id TYPE float;

COPY VISIT_OCCURRENCE(visit_occurrence_id,person_id,visit_concept_id,visit_start_date,visit_start_datetime,visit_end_date,visit_end_datetime,visit_type_concept_id,provider_id,care_site_id,visit_source_value,visit_source_concept_id,admitting_source_concept_id,admitting_source_value,discharge_to_concept_id,discharge_to_source_value,preceding_visit_occurrence_id) FROM '/csv_data/visit_occurrence.csv' WITH DELIMITER ',' CSV HEADER;


return `COPY 6341927`

There are still condition_era.csv, episode.csv, provider.csv, visit_detail.csv not import.
huyuaaaray commented 3 weeks ago

vocabulary:

docker exec -it omopv54 bash

psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1

\copy DRUG_STRENGTH FROM '/hexing/DRUG_STRENGTH.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy CONCEPT FROM '/hexing/CONCEPT.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy CONCEPT_RELATIONSHIP FROM '/hexing/CONCEPT_RELATIONSHIP.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy CONCEPT_ANCESTOR FROM '/hexing/CONCEPT_ANCESTOR.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy CONCEPT_SYNONYM FROM '/hexing/CONCEPT_SYNONYM.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy VOCABULARY FROM '/hexing/VOCABULARY.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy RELATIONSHIP FROM '/hexing/RELATIONSHIP.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy CONCEPT_CLASS FROM '/hexing/CONCEPT_CLASS.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

\copy DOMAIN FROM '/hexing/DOMAIN.csv' WITH DELIMITER E'\t' CSV HEADER QUOTE E'\b' ;

or psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f '/new_adrd/OMOP CDM vocabulary load - PostgreSQL.sql'

return

COPY 2981807
COPY 7407686
COPY 46545874
COPY 80436514
COPY 2741949
COPY 91
COPY 696
COPY 423
COPY 50
huyuaaaray commented 3 weeks ago

4 ddl files:

  1. psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/OMOPCDM_postgresql_5.4_primary_keys.sql return
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_primary_keys.sql:7: ERROR:  could not create unique index "xpk_visit_occurrence"
    DETAIL:  Key (visit_occurrence_id)=(7181518890) is duplicated.
    CONTEXT:  parallel worker
  2. psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql return
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:11: ERROR:  foreign key constraint "fpk_person_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:13: ERROR:  foreign key constraint "fpk_person_care_site_id" cannot be implemented
    DETAIL:  Key columns "care_site_id" and "care_site_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:31: ERROR:  foreign key constraint "fpk_visit_occurrence_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:33: ERROR:  foreign key constraint "fpk_visit_occurrence_care_site_id" cannot be implemented
    DETAIL:  Key columns "care_site_id" and "care_site_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:41: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:63: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:67: ERROR:  insert or update on table "condition_occurrence" violates foreign key constraint "fpk_condition_occurrence_condition_concept_id"
    DETAIL:  Key (condition_concept_id)=(1244938) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:73: ERROR:  foreign key constraint "fpk_condition_occurrence_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:75: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:77: ERROR:  insert or update on table "condition_occurrence" violates foreign key constraint "fpk_condition_occurrence_visit_detail_id"
    DETAIL:  Key (visit_detail_id)=(6995221058) is not present in table "visit_detail".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:83: ERROR:  insert or update on table "drug_exposure" violates foreign key constraint "fpk_drug_exposure_drug_concept_id"
    DETAIL:  Key (drug_concept_id)=(42609377) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:89: ERROR:  foreign key constraint "fpk_drug_exposure_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:91: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:93: ERROR:  insert or update on table "drug_exposure" violates foreign key constraint "fpk_drug_exposure_visit_detail_id"
    DETAIL:  Key (visit_detail_id)=(7005869863) is not present in table "visit_detail".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:95: ERROR:  insert or update on table "drug_exposure" violates foreign key constraint "fpk_drug_exposure_drug_source_concept_id"
    DETAIL:  Key (drug_source_concept_id)=(43527981) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:99: ERROR:  insert or update on table "procedure_occurrence" violates foreign key constraint "fpk_procedure_occurrence_procedure_concept_id"
    DETAIL:  Key (procedure_concept_id)=(2514408) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:103: ERROR:  foreign key constraint "fpk_procedure_occurrence_modifier_concept_id" cannot be implemented
    DETAIL:  Key columns "modifier_concept_id" and "concept_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:105: ERROR:  foreign key constraint "fpk_procedure_occurrence_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:107: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:109: ERROR:  foreign key constraint "fpk_procedure_occurrence_visit_detail_id" cannot be implemented
    DETAIL:  Key columns "visit_detail_id" and "visit_detail_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:111: ERROR:  insert or update on table "procedure_occurrence" violates foreign key constraint "fpk_procedure_occurrence_procedure_source_concept_id"
    DETAIL:  Key (procedure_source_concept_id)=(40756910) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:121: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:133: ERROR:  insert or update on table "measurement" violates foreign key constraint "fpk_measurement_measurement_concept_id"
    DETAIL:  Key (measurement_concept_id)=(2212166) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:139: ERROR:  foreign key constraint "fpk_measurement_value_as_concept_id" cannot be implemented
    DETAIL:  Key columns "value_as_concept_id" and "concept_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:141: ERROR:  foreign key constraint "fpk_measurement_unit_concept_id" cannot be implemented
    DETAIL:  Key columns "unit_concept_id" and "concept_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:143: ERROR:  foreign key constraint "fpk_measurement_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:145: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:147: ERROR:  insert or update on table "measurement" violates foreign key constraint "fpk_measurement_visit_detail_id"
    DETAIL:  Key (visit_detail_id)=(6988967448) is not present in table "visit_detail".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:149: ERROR:  insert or update on table "measurement" violates foreign key constraint "fpk_measurement_measurement_source_concept_id"
    DETAIL:  Key (measurement_source_concept_id)=(2212731) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:151: ERROR:  foreign key constraint "fpk_measurement_unit_source_concept_id" cannot be implemented
    DETAIL:  Key columns "unit_source_concept_id" and "concept_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:157: ERROR:  insert or update on table "observation" violates foreign key constraint "fpk_observation_observation_concept_id"
    DETAIL:  Key (observation_concept_id)=(2101922) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:161: ERROR:  foreign key constraint "fpk_observation_value_as_concept_id" cannot be implemented
    DETAIL:  Key columns "value_as_concept_id" and "concept_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:165: ERROR:  foreign key constraint "fpk_observation_unit_concept_id" cannot be implemented
    DETAIL:  Key columns "unit_concept_id" and "concept_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:167: ERROR:  foreign key constraint "fpk_observation_provider_id" cannot be implemented
    DETAIL:  Key columns "provider_id" and "provider_id" are of incompatible types: double precision and integer.
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:169: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:171: ERROR:  insert or update on table "observation" violates foreign key constraint "fpk_observation_visit_detail_id"
    DETAIL:  Key (visit_detail_id)=(7084255675) is not present in table "visit_detail".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:173: ERROR:  insert or update on table "observation" violates foreign key constraint "fpk_observation_observation_source_concept_id"
    DETAIL:  Key (observation_source_concept_id)=(2101922) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:197: ERROR:  there is no unique constraint matching given keys for referenced table "visit_occurrence"
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:321: ERROR:  insert or update on table "concept_relationship" violates foreign key constraint "fpk_concept_relationship_concept_id_1"
    DETAIL:  Key (concept_id_1)=(42627868) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:323: ERROR:  insert or update on table "concept_relationship" violates foreign key constraint "fpk_concept_relationship_concept_id_2"
    DETAIL:  Key (concept_id_2)=(42627868) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:329: ERROR:  insert or update on table "concept_synonym" violates foreign key constraint "fpk_concept_synonym_concept_id"
    DETAIL:  Key (concept_id)=(44816349) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:333: ERROR:  insert or update on table "concept_ancestor" violates foreign key constraint "fpk_concept_ancestor_ancestor_concept_id"
    DETAIL:  Key (ancestor_concept_id)=(709789) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:335: ERROR:  insert or update on table "concept_ancestor" violates foreign key constraint "fpk_concept_ancestor_descendant_concept_id"
    DETAIL:  Key (descendant_concept_id)=(725046) is not present in table "concept".
    psql:/omop_ddl/OMOPCDM_postgresql_5.4_constraints.sql:353: ERROR:  there is no unique constraint matching given keys for referenced table "cohort"
  3. psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/OMOPCDM_postgresql_5.4_indices.sql
huyuaaaray commented 3 weeks ago

load f files: txt files: psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/omoponfhir_f_person_ddl.txt psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/observation_column_size_change_ddl.txt psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/omoponfhir_v5.4_f_observation_ddl.txt psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/omoponfhir_v5.2_f_immunization_view_ddl.txt psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/omoponfhir_f_cache_ddl.txt

huyuaaaray commented 3 weeks ago

psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/names.dmp

ALTER TABLE f_person ALTER COLUMN person_id TYPE bigint;

psql -h ahc-hobi-gpu01.ahc.ufl.edu -p 5432 -U postgres -W -d adrd1 -f /omop_ddl/insert_names_ti_f_person.sql

retrun

INSERT 0 24277
INSERT 0 21871
huyuaaaray commented 3 weeks ago

https://docs.google.com/spreadsheets/d/1upybVgo0SlvocSumKL7v46bmUgBf41DK4DHd1yEQXKM/edit?usp=sharing