sql.eureka_meta_package_body_oracle.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aiw-i2b2-etl Show documentation
Show all versions of aiw-i2b2-etl Show documentation
AIW i2b2 ETL is a Protempa query results handler for loading data and
abstractions into i2b2.
---
-- #%L
-- AIW i2b2 ETL
-- %%
-- Copyright (C) 2012 - 2015 Emory University
-- %%
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-- #L%
---
CREATE OR REPLACE PACKAGE BODY EUREKA
AS
PROCEDURE EK_CLEAR_C_TOTALNUM(
tableName IN VARCHAR)
IS
BEGIN
EXECUTE IMMEDIATE 'UPDATE ' || tableName || ' SET C_TOTALNUM=NULL';
COMMIT;
EXCEPTION
WHEN OTHERS THEN
ROLLBACK;
raise_application_error(-20001,'An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM);
END EK_CLEAR_C_TOTALNUM;
PROCEDURE EK_UPDATE_C_TOTALNUM(
tableName IN VARCHAR)
IS
BEGIN
EXECUTE IMMEDIATE 'UPDATE ' || tableName || ' a3
SET a3.c_totalnum =
(SELECT COUNT(DISTINCT patient_num)
FROM i2b217data.observation_fact a1
JOIN i2b217data.concept_dimension a2
ON (a1.concept_cd = a2.concept_cd)
WHERE a2.concept_path LIKE a3.c_dimcode || ''%'')
WHERE UPPER(a3.c_operator)=''LIKE''
AND UPPER(a3.c_facttablecolumn)=''CONCEPT_CD''
AND UPPER(a3.c_tablename)=''CONCEPT_DIMENSION''
AND UPPER(a3.c_columnname)=''CONCEPT_PATH''
AND a3.c_columndatatype=''T''';
COMMIT;
EXCEPTION
WHEN OTHERS THEN
ROLLBACK;
raise_application_error(-20001,'An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM);
END EK_UPDATE_C_TOTALNUM;
END EUREKA ;
/
© 2015 - 2025 Weber Informatics LLC | Privacy Policy